forked from peritus/bumpversion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
645 lines (461 loc) · 20.3 KB
/
tests.py
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import pytest
import sys
import argparse
import subprocess
from os import curdir, makedirs, chdir, environ
from os.path import join, curdir, dirname
from shlex import split as shlex_split
from bumpversion import main, DESCRIPTION
environ['HGENCODING'] = 'UTF-8'
EXPECTED_USAGE = ("""
usage: py.test [-h] [--config-file FILE] [--parse REGEX] [--serialize FORMAT]
[--current-version VERSION] [--dry-run] --new-version VERSION
[--commit | --no-commit] [--tag | --no-tag]
[--tag-name TAG_NAME] [--message COMMIT_MSG]
part file [file ...]
%s
positional arguments:
part Part of the version to be bumped.
file Files to change
optional arguments:
-h, --help show this help message and exit
--config-file FILE Config file to read most of the variables from
(default: .bumpversion.cfg)
--parse REGEX Regex parsing the version string (default:
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+))
--serialize FORMAT How to format what is parsed back to a version
(default: {major}.{minor}.{patch})
--current-version VERSION
Version that needs to be updated (default: None)
--dry-run, -n Don't write any files, just pretend. (default: False)
--new-version VERSION
New version that should be in the files (default:
None)
--commit Commit to version control (default: False)
--no-commit Do not commit to version control
--tag Create a tag in version control (default: False)
--no-tag Do not create a tag in version control
--tag-name TAG_NAME Tag name (only works with --tag) (default:
v{new_version})
--message COMMIT_MSG, -m COMMIT_MSG
Commit message (default: Bump version:
{current_version} → {new_version})
""" % DESCRIPTION).lstrip()
def test_usage_string(tmpdir, capsys):
tmpdir.chdir()
with pytest.raises(SystemExit):
main(['--help'])
out, err = capsys.readouterr()
assert err == ""
assert out == EXPECTED_USAGE, "Usage string changed to \n\n\n{}\n\n\n".format(out)
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_regression_help_in_workdir(tmpdir, capsys, vcs):
tmpdir.chdir()
tmpdir.join("somesource.txt").write("1.7.2013")
subprocess.check_call([vcs, "init"])
subprocess.check_call([vcs, "add", "somesource.txt"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
subprocess.check_call([vcs, "tag", "v1.7.2013"])
with pytest.raises(SystemExit):
main(['--help'])
out, err = capsys.readouterr()
assert err == ""
if vcs == "git":
assert "usage: py.test [-h] [--config-file FILE] [--parse REGEX] [--serialize FORMAT]" in out
assert "Version that needs to be updated (default: 1.7.2013)" in out
assert "[--new-version VERSION]" in out
else:
assert out == EXPECTED_USAGE
def test_defaults_in_usage_with_config(tmpdir, capsys):
tmpdir.chdir()
tmpdir.join("mydefaults.cfg").write("""[bumpversion]
current_version: 18
new_version: 19
files: file1 file2 file3""")
with pytest.raises(SystemExit):
main(['--config-file', 'mydefaults.cfg', '--help'])
out, err = capsys.readouterr()
assert "Version that needs to be updated (default: 18)" in out
assert "New version that should be in the files (default: 19)" in out
assert "[--current-version VERSION]" in out
assert "[--new-version VERSION]" in out
assert "[file [file ...]]" in out
def test_missing_explicit_config_file(tmpdir):
tmpdir.chdir()
with pytest.raises(argparse.ArgumentTypeError):
main(['--config-file', 'missing.cfg'])
def test_simple_replacement(tmpdir):
tmpdir.join("VERSION").write("1.2.0")
tmpdir.chdir()
main(shlex_split("patch --current-version 1.2.0 --new-version 1.2.1 VERSION"))
assert "1.2.1" == tmpdir.join("VERSION").read()
def test_simple_replacement_in_utf8_file(tmpdir):
tmpdir.join("VERSION").write("Kröt1.3.0".encode('utf-8'), 'wb')
tmpdir.chdir()
main(shlex_split("patch --current-version 1.3.0 --new-version 1.3.1 VERSION"))
out = tmpdir.join("VERSION").read('rb')
assert "'Kr\\xc3\\xb6t1.3.1'" in repr(out)
def test_config_file(tmpdir):
tmpdir.join("file1").write("0.9.34")
tmpdir.join("mybumpconfig.cfg").write("""[bumpversion]
current_version: 0.9.34
new_version: 0.9.35
files: file1""")
tmpdir.chdir()
main(shlex_split("patch --config-file mybumpconfig.cfg"))
assert "0.9.35" == tmpdir.join("file1").read()
def test_default_config_file(tmpdir):
tmpdir.join("file2").write("0.10.2")
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]
current_version: 0.10.2
new_version: 0.10.3
files: file2""")
tmpdir.chdir()
main(['patch'])
assert "0.10.3" == tmpdir.join("file2").read()
def test_config_file_is_updated(tmpdir):
tmpdir.join("file3").write("13")
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]
current_version: 13
new_version: 14
files: file3""")
tmpdir.chdir()
main(['patch'])
assert """[bumpversion]
current_version = 14
files = file3
""" == tmpdir.join(".bumpversion.cfg").read()
def test_dry_run(tmpdir):
config = """[bumpversion]
current_version: 12
new_version: 12.2
files: file4"""
version = "12"
tmpdir.join("file4").write(version)
tmpdir.join(".bumpversion.cfg").write(config)
tmpdir.chdir()
main(['patch', '--dry-run'])
assert config == tmpdir.join(".bumpversion.cfg").read()
assert version == tmpdir.join("file4").read()
def test_bump_version(tmpdir):
tmpdir.join("file5").write("1.0.0")
tmpdir.chdir()
main(['patch', '--current-version', '1.0.0', 'file5'])
assert '1.0.1' == tmpdir.join("file5").read()
def test_bump_version_custom_parse(tmpdir):
tmpdir.join("file6").write("XXX1;0;0")
tmpdir.chdir()
main([
'--current-version', 'XXX1;0;0',
'--parse', 'XXX(?P<spam>\d+);(?P<garlg>\d+);(?P<slurp>\d+)',
'--serialize', 'XXX{spam};{garlg};{slurp}',
'garlg',
'file6'
])
assert 'XXX1;1;0' == tmpdir.join("file6").read()
def test_bumpversion_custom_parse_semver(tmpdir):
tmpdir.join("file15").write("XXX1.1.7-master+allan1")
tmpdir.chdir()
main([
'--current-version', '1.1.7-master+allan1',
'--parse', '(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(-(?P<prerel>[^\+]+))?(\+(?P<meta>.*))?',
'--serialize', '{major}.{minor}.{patch}-{prerel}+{meta}',
'meta',
'file15'
])
assert 'XXX1.1.7-master+allan2' == tmpdir.join("file15").read()
def test_bumpversion_serialize_only_parts(tmpdir):
tmpdir.join("file51").write("XXX1.1.8-master+allan1")
tmpdir.chdir()
main([
'--current-version', '1.1.8-master+allan1',
'--parse', '(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(-(?P<prerel>[^\+]+))?(\+(?P<meta>.*))?',
'--serialize', 'v{major}.{minor}',
'meta',
'file51'
])
assert 'XXXv1.1' == tmpdir.join("file51").read()
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_dirty_workdir(tmpdir, vcs):
tmpdir.chdir()
subprocess.check_call([vcs, "init"])
tmpdir.join("dirty").write("i'm dirty")
subprocess.check_call([vcs, "add", "dirty"])
with pytest.raises(AssertionError):
main(['patch', '--current-version', '1', '--new-version', '2', 'file7'])
def test_bump_major(tmpdir):
tmpdir.join("fileMAJORBUMP").write("4.2.8")
tmpdir.chdir()
main(['--current-version', '4.2.8', 'major', 'fileMAJORBUMP'])
assert '5.0.0' == tmpdir.join("fileMAJORBUMP").read()
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_commit_and_tag(tmpdir, vcs):
tmpdir.chdir()
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("47.1.1")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
main(['patch', '--current-version', '47.1.1', '--commit', 'VERSION'])
assert '47.1.2' == tmpdir.join("VERSION").read()
log = subprocess.check_output([vcs, "log", "-p"]).decode("utf-8")
assert '-47.1.1' in log
assert '+47.1.2' in log
assert 'Bump version: 47.1.1 → 47.1.2' in log
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'v47.1.2' not in tag_out
main(['patch', '--current-version', '47.1.2', '--commit', '--tag', 'VERSION'])
assert '47.1.3' == tmpdir.join("VERSION").read()
log = subprocess.check_output([vcs, "log", "-p"])
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'v47.1.3' in tag_out
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_commit_and_tag_with_configfile(tmpdir, vcs):
tmpdir.chdir()
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]\ncommit = True\ntag = True""")
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("48.1.1")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
main(['patch', '--current-version', '48.1.1', '--no-tag', 'VERSION'])
assert '48.1.2' == tmpdir.join("VERSION").read()
log = subprocess.check_output([vcs, "log", "-p"]).decode("utf-8")
assert '-48.1.1' in log
assert '+48.1.2' in log
assert 'Bump version: 48.1.1 → 48.1.2' in log
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'v48.1.2' not in tag_out
main(['patch', '--current-version', '48.1.2', 'VERSION'])
assert '48.1.3' == tmpdir.join("VERSION").read()
log = subprocess.check_output([vcs, "log", "-p"])
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'v48.1.3' in tag_out
@pytest.mark.parametrize(("vcs,config"), [
("git","""[bumpversion]\ncommit = True"""),
("hg", """[bumpversion]\ncommit = True"""),
("git","""[bumpversion]\ncommit = True\ntag = False"""),
("hg", """[bumpversion]\ncommit = True\ntag = False""")
])
def test_commit_and_not_tag_with_configfile(tmpdir, vcs, config):
tmpdir.chdir()
tmpdir.join(".bumpversion.cfg").write(config)
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("48.1.1")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
main(['patch', '--current-version', '48.1.1', 'VERSION'])
assert '48.1.2' == tmpdir.join("VERSION").read()
log = subprocess.check_output([vcs, "log", "-p"]).decode("utf-8")
assert '-48.1.1' in log
assert '+48.1.2' in log
assert 'Bump version: 48.1.1 → 48.1.2' in log
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'v48.1.2' not in tag_out
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_commit_explicitly_false(tmpdir, vcs):
tmpdir.chdir()
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]
current_version: 10.0.0
commit = False
tag = False""")
subprocess.check_call([vcs, "init"])
tmpdir.join("trackedfile").write("10.0.0")
subprocess.check_call([vcs, "add", "trackedfile"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
main(['patch', 'trackedfile'])
assert '10.0.1' == tmpdir.join("trackedfile").read()
log = subprocess.check_output([vcs, "log", "-p"]).decode("utf-8")
assert "10.0.1" not in log
diff = subprocess.check_output([vcs, "diff"]).decode("utf-8")
assert "10.0.1" in diff
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_commit_configfile_true_cli_false_override(tmpdir, vcs):
tmpdir.chdir()
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]
current_version: 27.0.0
commit = True""")
subprocess.check_call([vcs, "init"])
tmpdir.join("dontcommitfile").write("27.0.0")
subprocess.check_call([vcs, "add", "dontcommitfile"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
main(['patch', '--no-commit', 'dontcommitfile'])
assert '27.0.1' == tmpdir.join("dontcommitfile").read()
log = subprocess.check_output([vcs, "log", "-p"]).decode("utf-8")
assert "27.0.1" not in log
diff = subprocess.check_output([vcs, "diff"]).decode("utf-8")
assert "27.0.1" in diff
def test_bump_version_ENV(tmpdir):
tmpdir.join("on_jenkins").write("2.3.4")
tmpdir.chdir()
environ['BUILD_NUMBER'] = "567"
main([
'--current-version', '2.3.4',
'--parse', '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+).*',
'--serialize', '{major}.{minor}.{patch}.pre{$BUILD_NUMBER}',
'patch',
'on_jenkins',
])
del environ['BUILD_NUMBER']
assert '2.3.5.pre567' == tmpdir.join("on_jenkins").read()
def test_current_version_from_tag(tmpdir):
# prepare
tmpdir.join("update_from_tag").write("26.6.0")
tmpdir.chdir()
subprocess.check_call(["git", "init"])
subprocess.check_call(["git", "add", "update_from_tag"])
subprocess.check_call(["git", "commit", "-m", "initial"])
subprocess.check_call(["git", "tag", "v26.6.0"])
# don't give current-version, that should come from tag
main(['patch', 'update_from_tag'])
assert '26.6.1' == tmpdir.join("update_from_tag").read()
def test_current_version_from_tag_written_to_config_file(tmpdir):
# prepare
tmpdir.join("updated_also_in_config_file").write("14.6.0")
tmpdir.chdir()
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]""")
subprocess.check_call(["git", "init"])
subprocess.check_call(["git", "add", "updated_also_in_config_file"])
subprocess.check_call(["git", "commit", "-m", "initial"])
subprocess.check_call(["git", "tag", "v14.6.0"])
# don't give current-version, that should come from tag
main([
'patch',
'updated_also_in_config_file',
'--commit',
'--tag',
])
assert '14.6.1' == tmpdir.join("updated_also_in_config_file").read()
assert '14.6.1' in tmpdir.join(".bumpversion.cfg").read()
def test_distance_to_latest_tag_as_part_of_new_version(tmpdir):
# prepare
tmpdir.join("mysourcefile").write("19.6.0")
tmpdir.chdir()
subprocess.check_call(["git", "init"])
subprocess.check_call(["git", "add", "mysourcefile"])
subprocess.check_call(["git", "commit", "-m", "initial"])
subprocess.check_call(["git", "tag", "v19.6.0"])
subprocess.check_call(["git", "commit", "--allow-empty", "-m", "Just a commit 1"])
subprocess.check_call(["git", "commit", "--allow-empty", "-m", "Just a commit 2"])
subprocess.check_call(["git", "commit", "--allow-empty", "-m", "Just a commit 3"])
# don't give current-version, that should come from tag
main([
'patch',
'--parse', '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+).*',
'--serialize', '{major}.{minor}.{patch}-pre{distance_to_latest_tag}',
'mysourcefile',
])
assert '19.6.1-pre3' == tmpdir.join("mysourcefile").read()
def test_override_vcs_current_version(tmpdir):
# prepare
tmpdir.join("contains_actual_version").write("6.7.8")
tmpdir.chdir()
subprocess.check_call(["git", "init"])
subprocess.check_call(["git", "add", "contains_actual_version"])
subprocess.check_call(["git", "commit", "-m", "initial"])
subprocess.check_call(["git", "tag", "v6.7.8"])
# update file
tmpdir.join("contains_actual_version").write("7.0.0")
subprocess.check_call(["git", "add", "contains_actual_version"])
# but forgot to tag or forgot to push --tags
subprocess.check_call(["git", "commit", "-m", "major release"])
# if we don't give current-version here we get
# "AssertionError: Did not find string 6.7.8 in file contains_actual_version"
main(['patch', '--current-version', '7.0.0', 'contains_actual_version'])
assert '7.0.1' == tmpdir.join("contains_actual_version").read()
def test_nonexisting_file(tmpdir):
tmpdir.chdir()
with pytest.raises(IOError):
main(shlex_split("patch --current-version 1.2.0 --new-version 1.2.1 doesnotexist.txt"))
def test_nonexisting_file(tmpdir):
tmpdir.chdir()
tmpdir.join("mysourcecode.txt").write("1.2.3")
with pytest.raises(IOError):
main(shlex_split("patch --current-version 1.2.3 mysourcecode.txt doesnotexist2.txt"))
# first file is unchanged because second didn't exist
assert '1.2.3' == tmpdir.join("mysourcecode.txt").read()
def test_read_version_tags_only(tmpdir):
# prepare
tmpdir.join("update_from_tag").write("29.6.0")
tmpdir.chdir()
subprocess.check_call(["git", "init"])
subprocess.check_call(["git", "add", "update_from_tag"])
subprocess.check_call(["git", "commit", "-m", "initial"])
subprocess.check_call(["git", "tag", "v29.6.0"])
subprocess.check_call(["git", "commit", "--allow-empty", "-m", "a commit"])
subprocess.check_call(["git", "tag", "jenkins-deploy-myproject-2"])
# don't give current-version, that should come from tag
main(['patch', 'update_from_tag'])
assert '29.6.1' == tmpdir.join("update_from_tag").read()
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_tag_name(tmpdir, vcs):
tmpdir.chdir()
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("31.1.1")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
main(['patch', '--current-version', '31.1.1', '--commit', '--tag', 'VERSION', '--tag-name', 'ReleasedVersion-{new_version}'])
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'ReleasedVersion-31.1.2' in tag_out
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_message_from_config_file(tmpdir, capsys, vcs):
tmpdir.chdir()
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("400.0.0")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
tmpdir.join(".bumpversion.cfg").write("""[bumpversion]
current_version: 400.0.0
new_version: 401.0.0
commit: True
tag: True
message: {current_version} was old, {new_version} is new
tag_name: from-{current_version}-to-{new_version}""")
main(['major', 'VERSION'])
log = subprocess.check_output([vcs, "log", "-p"])
assert b'400.0.0 was old, 401.0.0 is new' in log
tag_out = subprocess.check_output([vcs, {"git": "tag", "hg": "tags"}[vcs]])
assert b'from-400.0.0-to-401.0.0' in tag_out
config_parser_handles_utf8 = True
try:
import configparser
except ImportError:
config_parser_handles_utf8 = False
@pytest.mark.xfail(not config_parser_handles_utf8,
reason="old ConfigParser uses non-utf-8-strings internally")
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_utf8_message_from_config_file(tmpdir, capsys, vcs):
tmpdir.chdir()
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("500.0.0")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
initial_config = """[bumpversion]
current_version = 500.0.0
commit = True
message = Nová verze: {current_version} ☃, {new_version} ☀
"""
tmpdir.join(".bumpversion.cfg").write(initial_config.encode('utf-8'), mode='wb')
main(['major', 'VERSION'])
log = subprocess.check_output([vcs, "log", "-p"])
expected_new_config = initial_config.replace('500', '501')
assert expected_new_config.encode('utf-8') == tmpdir.join(".bumpversion.cfg").read(mode='rb')
@pytest.mark.parametrize(("vcs"), [("git"), ("hg")])
def test_utf8_message_from_config_file(tmpdir, capsys, vcs):
tmpdir.chdir()
subprocess.check_call([vcs, "init"])
tmpdir.join("VERSION").write("10.10.0")
subprocess.check_call([vcs, "add", "VERSION"])
subprocess.check_call([vcs, "commit", "-m", "initial commit"])
initial_config = """[bumpversion]
current_version = 10.10.0
commit = True
message = [{now}] [{utcnow} {utcnow:%YXX%mYY%d}]
"""
tmpdir.join(".bumpversion.cfg").write(initial_config)
main(['major', 'VERSION'])
log = subprocess.check_output([vcs, "log", "-p"])
assert b'[20' in log
assert b'] [' in log
assert b'XX' in log
assert b'YY' in log