File: test__rules.py

package info (click to toggle)
debmutate 0.81
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 588 kB
  • sloc: python: 8,319; makefile: 12; sh: 1
file content (473 lines) | stat: -rw-r--r-- 10,880 bytes parent folder | download | duplicates (2)
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
#!/usr/bin/python
# Copyright (C) 2019 Jelmer Vernooij
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

"""Tests for debmutate.rules."""

from debmutate._rules import (
    Makefile,
    Rule,
    dh_invoke_add_with,
    dh_invoke_drop_with,
    dh_invoke_get_with,
    discard_pointless_override,
    matches_wildcard,
    update_rules,
)

from . import TestCase, TestCaseInTempDir


class MakefileParseTests(TestCase):
    def test_simple_rule(self):
        mf = Makefile.from_bytes(
            b"""\
all:
\ttest
"""
        )
        self.assertEqual(mf.contents, [Rule(b"all", commands=[b"test"])])

    def test_conditional(self):
        mf = Makefile.from_bytes(
            b"""\
all:
ifeq (foo, bar)
\ttest
  endif
"""
        )
        self.assertEqual(1, len(mf.contents))

    def test_conditional_rule(self):
        mf = Makefile.from_bytes(
            b"""\
all: %: test
\ttest
"""
        )
        self.assertEqual(
            mf.contents,
            [Rule(b"all", commands=[b"test"], prereq_targets=[b"%:", b"test"])],
        )

    def test_rule_with_comment(self):
        mf = Makefile.from_bytes(
            b"""\
rule1:
\ttest1

# And this is a comment
rule2:
\ttest2
"""
        )
        self.assertEqual(
            mf.contents,
            [
                Rule(b"rule1", commands=[b"test1"]),
                b"",
                Rule(
                    b"rule2",
                    commands=[b"test2"],
                    precomment=[b"# And this is a comment"],
                ),
            ],
        )


class UpdateRulesTests(TestCaseInTempDir):
    def test_update_command(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
SOMETHING = 1

all:
\techo blah
\techo foo
""",
                ),
            ]
        )

        def replace(line, target):
            if line == b"echo blah":
                return b"echo bloe"
            return line

        self.assertTrue(update_rules(replace))
        self.assertFalse(update_rules(replace))
        self.assertFileEqual(
            """\
SOMETHING = 1

all:
\techo bloe
\techo foo
""",
            "debian/rules",
        )

    def test_continuation(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
SOMETHING = 1

all:
\techo blah \\
foo
""",
                ),
            ]
        )

        def replace(line, target):
            if line == b"echo blah \\\nfoo":
                return b"echo bloe"
            return line

        self.assertTrue(update_rules(replace))
        self.assertFalse(update_rules(replace))
        self.assertFileEqual(
            """\
SOMETHING = 1

all:
\techo bloe
""",
            "debian/rules",
        )

    def test_empty_line(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
SOMETHING = 1

all:
\techo blah

\techo foo
""",
                ),
            ]
        )

        def replace(line, target):
            if line == b"echo foo":
                return b"echo bloe"
            return line

        self.assertTrue(update_rules(replace))
        self.assertFalse(update_rules(replace))
        self.assertFileEqual(
            """\
SOMETHING = 1

all:
\techo blah

\techo bloe
""",
            "debian/rules",
        )

    def test_remove_variable(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
# Comment
SOMETHING = 1

all:
\techo blah
""",
                ),
            ]
        )

        def remove(line):
            if line == b"SOMETHING = 1":
                return None
            return line

        self.assertTrue(update_rules(global_line_cb=remove))
        self.assertFalse(update_rules(global_line_cb=remove))
        self.assertFileEqual(
            """\
# Comment

all:
\techo blah
""",
            "debian/rules",
        )

    def test_remove_variable_with_comment(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
# Comment
SOMETHING = 1

all:
\techo blah
""",
                ),
            ]
        )

        def remove(line):
            if line == b"SOMETHING = 1":
                return None
            return line

        self.assertTrue(update_rules(global_line_cb=remove, drop_related_comments=True))
        self.assertFalse(update_rules(global_line_cb=remove))
        self.assertFileEqual(
            """\

all:
\techo blah
""",
            "debian/rules",
        )

    def test_keep_shebang(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
#!/usr/bin/blah -f
SOMETHING = 1

all:
\techo blah
""",
                ),
            ]
        )

        def remove(line):
            if line == b"SOMETHING = 1":
                return None
            return line

        self.assertTrue(update_rules(global_line_cb=remove, drop_related_comments=True))
        self.assertFalse(update_rules(global_line_cb=remove))
        self.assertFileEqual(
            """\
#!/usr/bin/blah -f

all:
\techo blah
""",
            "debian/rules",
        )

    def test_keep_rule_cb(self):
        self.build_tree_contents(
            [
                ("debian/",),
                (
                    "debian/rules",
                    """\
SOMETHING = 1

all:
\techo blah

none:
\techo foo
""",
                ),
            ]
        )

        def discard_none(rule):
            if rule.target == b"none":
                rule.clear()

        self.assertTrue(update_rules(rule_cb=discard_none))
        self.assertFalse(update_rules(rule_cb=discard_none))
        self.assertFileEqual(
            """\
SOMETHING = 1

all:
\techo blah
""",
            "debian/rules",
        )


class MakefileTests(TestCase):
    def test_add_rule(self):
        mf = Makefile.from_bytes(
            b"""\
SOMETHING = 1

all:
\techo blah

# Original rule
# Multi-line comment
none:
\techo foo
"""
        )
        r = mf.add_rule(b"blah", precomment=[b"# A new rule"])
        self.assertIsInstance(r, Rule)
        r.append_command(b"echo really blah")
        self.assertEqual(
            b"""\
SOMETHING = 1

all:
\techo blah

# Original rule
# Multi-line comment
none:
\techo foo

# A new rule
blah:
\techo really blah
""",
            mf.dump(),
        )

    def test_get_variable(self):
        mf = Makefile.from_bytes(
            b"""\
SOMETHING = 1
export SOMETHING_ELSE = 2
SOMETHING_EXPORTED := 4

all:
\techo blah

"""
        )
        self.assertEqual(b"1", mf.get_variable(b"SOMETHING"))
        self.assertEqual(b"2", mf.get_variable(b"SOMETHING_ELSE"))
        self.assertEqual(b"4", mf.get_variable(b"SOMETHING_EXPORTED"))
        self.assertRaises(KeyError, mf.get_variable, b"SOMETHING_MISSING")


class InvokeDropWithTests(TestCase):
    def test_drop_with(self):
        self.assertEqual(b"dh", dh_invoke_drop_with(b"dh --with=blah", b"blah"))
        self.assertEqual(
            b"dh --with=foo", dh_invoke_drop_with(b"dh --with=blah,foo", b"blah")
        )
        self.assertEqual(
            b"dh --with=foo --other",
            dh_invoke_drop_with(b"dh --with=blah,foo --other", b"blah"),
        )
        self.assertEqual(b"dh", dh_invoke_drop_with(b"dh --with=blah", b"blah"))
        self.assertEqual(
            b"dh --with=foo", dh_invoke_drop_with(b"dh --with=foo,blah", b"blah")
        )
        self.assertEqual(
            b"dh $@ --verbose --with autoreconf,cme-upgrade",
            dh_invoke_drop_with(
                b"dh $@ --verbose --with autoreconf,systemd,cme-upgrade", b"systemd"
            ),
        )
        self.assertEqual(
            b"dh $@ --with gir,python3,sphinxdoc --without autoreconf "
            b"--buildsystem=cmake",
            dh_invoke_drop_with(
                b"dh $@ --with gir,python3,sphinxdoc,systemd "
                b"--without autoreconf --buildsystem=cmake",
                b"systemd",
            ),
        )
        self.assertEqual(
            b"dh $@", dh_invoke_drop_with(b"dh $@ --with systemd", b"systemd")
        )


class DhInvokeGetWithsTests(TestCase):
    def test_simple(self):
        self.assertEqual(["blah"], dh_invoke_get_with(b"dh --with=blah --foo"))
        self.assertEqual(["blah"], dh_invoke_get_with(b"dh --with=blah"))
        self.assertEqual(
            ["blah", "blie"], dh_invoke_get_with(b"dh --with=blah --with blie")
        )
        self.assertEqual(["blah", "blie"], dh_invoke_get_with(b"dh --with=blah,blie"))


class InvokeAddWithTests(TestCase):
    def test_add_with(self):
        self.assertEqual(b"dh --with=blah", dh_invoke_add_with(b"dh", b"blah"))
        self.assertEqual(
            b"dh --with=foo,blah", dh_invoke_add_with(b"dh --with=foo", b"blah")
        )
        self.assertEqual(
            b"dh --with=foo,blah --other",
            dh_invoke_add_with(b"dh --with=foo --other", b"blah"),
        )


class MatchesWildcardTests(TestCase):
    def test_some(self):
        self.assertTrue(matches_wildcard("foo", "foo"))
        self.assertTrue(matches_wildcard("foo", "fo%"))
        self.assertTrue(matches_wildcard("foo", "%"))
        self.assertFalse(matches_wildcard("foo", "bar"))
        self.assertFalse(matches_wildcard("foo", "fo"))
        self.assertFalse(matches_wildcard("foo", "oo"))
        self.assertFalse(matches_wildcard("foo", "b%"))


class DiscardPointlessOverrideTests(TestCase):
    def test_simple(self):
        mf = Makefile.from_bytes(
            b"""\
override_dh_blah:
\tdh_blah

.PHONY: override_dh_blah
"""
        )

        rule = next(mf.iter_rules(b"override_dh_blah"))
        discard_pointless_override(mf, rule)
        self.assertEqual(rule.lines, [])
        phony = next(mf.iter_rules(b".PHONY"))
        self.assertEqual([], phony.components)