summaryrefslogtreecommitdiff
path: root/tests/core/test_config.py
blob: 68e1d9ae2418df37bf110d323a91adc2bf832b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
import pytest
from fs import open_fs
from schema import SchemaError

from organize import config, core


def validate_and_convert(string: str):
    conf = config.load_from_string(string)
    conf = config.cleanup(conf)
    config.validate(conf)
    core.replace_with_instances(conf)
    return conf


def test_basic():
    STR = """
    rules:
    - locations: '~/'
      filters:
      - extension:
        - jpg
        - png
      - extension: txt
      actions:
      - move:
          dest: '~/New Folder'
      - echo: 'Moved {path}/{extension.upper()}'
    - locations:
      - path: '~/test1'
        ignore_errors: true
      actions:
      - shell:
          cmd: 'say {path.stem}'
    """
    validate_and_convert(STR)


def test_yaml_ref():
    STR = """
    media: &media
      - wav
      - png

    all_folders: &all
      - "~"
      - "/"

    rules:
      - locations: *all
        filters:
          - extension: *media
          - extension:
            - *media
            - jpg
          - lastmodified:
              days: 10
        actions:
          - echo: 'Hello World'
      - locations:
          - *all
          - path: /more/more
            ignore_errors: true
        actions:
          - trash
    """
    validate_and_convert(STR)


def test_error_filter_dict():
    STR = """
    rules:
    - locations: '/'
      filters:
        extension: 'jpg'
      actions:
      - trash
    """
    with pytest.raises(SchemaError):
        validate_and_convert(STR)


# def test_error_action_dict():
#     conf = Config.from_string(
#         """
#     rules:
#     - folders: '/'
#       filters:
#       - extension: 'jpg'
#       actions:
#         Trash
#     """
#     )
#     with pytest.raises(Config.ActionsNoListError):
#         _ = conf.rules


# def test_empty_filters():
#     conf = """
#     rules:
#       - folders: '/'
#         filters:
#         actions:
#           - trash
#       - folders: '~/'
#         actions:
#           - trash
#     """
#     assert Config.from_string(conf).rules == [
#         Rule(
#             folders=["/"],
#             filters=[],
#             actions=[Trash()],
#             subfolders=False,
#             system_files=False,
#         ),
#         Rule(
#             folders=["~/"],
#             filters=[],
#             actions=[Trash()],
#             subfolders=False,
#             system_files=False,
#         ),
#     ]


# @pytest.mark.skip
# def test_flatten_filters_and_actions():
#     config = """
#     folder_aliases:
#       Downloads: &downloads ~/Downloads/
#       Payables_due: &payables_due ~/PayablesDue/
#       Payables_paid: &payables_paid ~/Accounting/Expenses/
#       Receivables_due: &receivables_due ~/Receivables/
#       Receivables_paid: &receivables_paid ~/Accounting/Income/

#     defaults:
#       filters: &default_filters
#         - extension: pdf
#         - filecontent: '(?P<date>...)'
#       actions: &default_actions
#         - echo: 'Dated: {filecontent.date}'
#         - echo: 'Stem of filename: {filecontent.stem}'
#       post_actions: &default_sorting
#         - rename: '{python.timestamp}-{filecontent.stem}.{extension.lower}'
#         - move: '{path.parent}/{python.quarter}/'

#     rules:
#       - folders: *downloads
#         filters:
#           - *default_filters
#           - filecontent: 'Due Date' # regex to id as payable
#           - filecontent: '(?P<stem>...)' # regex to extract supplier
#         actions:
#           - *default_actions
#           - move: *payables_due
#           - *default_sorting

#       - folders: *downloads
#         filters:
#           - *default_filters
#           - filecontent: 'Account: 000000000' # regex to id as receivables due
#           - filecontent: '(?P<stem>...)' # regex to extract customer
#         actions:
#           - *default_actions
#           - move: *receivables_due
#           - *default_sorting

#       - folders: *downloads
#         filters:
#           - *default_filters
#           - filecontent: 'PAID' # regex to id as receivables paid
#           - filecontent: '(?P<stem>...)' # regex to extract customer
#           - filecontent: '(?P<paid>...)' # regex to extract date paid
#           - filename:
#               startswith: 2020
#         actions:
#           - *default_actions
#           - move: *receivables_paid
#           - *default_sorting
#           - rename: '{filecontent.paid}_{filecontent.stem}.{extension}'
#     """
#     conf = Config.from_string(config)
#     assert conf.rules == [
#         Rule(
#             folders=["~/Downloads/"],
#             filters=[
#                 # default_filters
#                 Extension("pdf"),
#                 FileContent(expr="(?P<date>...)"),
#                 # added filters
#                 FileContent(expr="Due Date"),
#                 FileContent(expr="(?P<stem>...)"),
#             ],
#             actions=[
#                 # default_actions
#                 Echo(msg="Dated: {filecontent.date}"),
#                 Echo(msg="Stem of filename: {filecontent.stem}"),
#                 # added actions
#                 Move(dest="~/PayablesDue/", overwrite=False),
#                 # default_sorting
#                 Rename(
#                     name="{python.timestamp}-{filecontent.stem}.{extension.lower}",
#                     overwrite=False,
#                 ),
#                 Move(dest="{path.parent}/{python.quarter}/", overwrite=False),
#             ],
#             subfolders=False,
#             system_files=False,
#         ),
#         Rule(
#             folders=["~/Downloads/"],
#             filters=[
#                 # default_filters
#                 Extension("pdf"),
#                 FileContent(expr="(?P<date>...)"),
#                 # added filters
#                 FileContent(expr="Account: 000000000"),
#                 FileContent(expr="(?P<stem>...)"),
#             ],
#             actions=[
#                 # default_actions
#                 Echo(msg="Dated: {filecontent.date}"),
#                 Echo(msg="Stem of filename: {filecontent.stem}"),
#                 # added actions
#                 Move(dest="~/Receivables/", overwrite=False),
#                 # default_sorting
#                 Rename(
#                     name="{python.timestamp}-{filecontent.stem}.{extension.lower}",
#                     overwrite=False,
#                 ),
#                 Move(dest="{path.parent}/{python.quarter}/", overwrite=False),
#             ],
#             subfolders=False,
#             system_files=False,
#         ),
#         Rule(
#             folders=["~/Downloads/"],
#             filters=[
#                 # default_filters
#                 Extension("pdf"),
#                 FileContent(expr="(?P<date>...)"),
#                 # added filters
#                 FileContent(expr="PAID"),
#                 FileContent(expr="(?P<stem>...)"),
#                 FileContent(expr="(?P<paid>...)"),
#                 Filename(startswith="2020"),
#             ],
#             actions=[
#                 # default_actions
#                 Echo(msg="Dated: {filecontent.date}"),
#                 Echo(msg="Stem of filename: {filecontent.stem}"),
#                 # added actions
#                 Move(dest="~/Accounting/Income/", overwrite=False),
#                 # default_sorting
#                 Rename(
#                     name="{python.timestamp}-{filecontent.stem}.{extension.lower}",
#                     overwrite=False,
#                 ),
#                 Move(dest="{path.parent}/{python.quarter}/", overwrite=False),
#                 # added actions
#                 Rename(
#                     name="{filecontent.paid}_{filecontent.stem}.{extension}",
#                     overwrite=False,
#                 ),
#             ],
#             subfolders=False,
#             system_files=False,
#         ),
#     ]