-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathgit-version-spec.cr
More file actions
862 lines (661 loc) · 24.9 KB
/
Copy pathgit-version-spec.cr
File metadata and controls
862 lines (661 loc) · 24.9 KB
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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
require "spec"
require "file_utils"
require "./utils"
require "../src/git-version"
include Utils
describe GitVersion do
it "should get the correct version in master and dev branch" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b #{git.release_branch})
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
version = git.get_new_version
# no commit since latest tag, expect no version bump
version.should eq("1.0.0")
tmp.exec %(git checkout -b dev)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
tag_on_master = git.tags_by_branch("#{git.release_branch}")
tag_on_master.should eq(["1.0.0"])
current_branch = git.current_branch_or_tag
current_branch.should eq("#{git.dev_branch}")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("1.0.1-SNAPSHOT.1.#{hash}")
tmp.exec %(git checkout -b feature-branch)
tmp.exec %(touch file2.txt)
tmp.exec %(git add file2.txt)
tmp.exec %(git commit --no-gpg-sign -m "new file2.txt")
ensure
tmp.cleanup
end
end
it "should get the correct version feature branch" do
tmp = InTmp.new
begin
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b my-fancy.branch)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("1.0.1-myfancybranch.1.#{hash}")
ensure
tmp.cleanup
end
end
it "should properly bump the version" do
tmp = InTmp.new
begin
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: XYZ")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("2.0.0-SNAPSHOT.1.#{hash}")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: XYZ")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("2.0.0-SNAPSHOT.2.#{hash}")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "feature: XYZ")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("2.0.0-SNAPSHOT.3.#{hash}")
ensure
tmp.cleanup
end
end
it "bump on master after merging in various ways" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b my-fancy.branch)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: XYZ")
tmp.exec %(git checkout master)
version = git.get_new_version
# no new commit in master, expect no version bump
version.should eq("1.0.0")
tmp.exec %(git merge my-fancy.branch)
version = git.get_new_version
version.should eq("2.0.0")
tmp.exec %(git tag "2.0.0")
tmp.exec %(git checkout -b my-fancy.branch2)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: ABC")
tmp.exec %(git checkout master)
version = git.get_new_version
# no new commit in master, expect no version bump
version.should eq("2.0.0")
tmp.exec %(git merge --ff-only my-fancy.branch2)
version = git.get_new_version
version.should eq("3.0.0")
tmp.exec %(git tag "3.0.0")
tmp.exec %(git checkout -b my-fancy.branch3)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "feature: 123")
tmp.exec %(git checkout master)
version = git.get_new_version
# no new commit in master, expect no version bump
version.should eq("3.0.0")
tmp.exec %(git merge --no-gpg-sign --no-ff my-fancy.branch3)
version = git.get_new_version
version.should eq("3.1.0")
ensure
tmp.cleanup
end
end
it "correct version on feature after second commit" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(# Checkout to dev)
tmp.exec %(git checkout -b dev)
# Checkout to FT-1111 from dev and add a commit)
tmp.exec %(git checkout -b FT-1111)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "3")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "4")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("1.0.1-ft1111.2.#{hash}")
ensure
tmp.cleanup
end
end
it "should retrieve correct first version on master" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
version = git.get_new_version
version.should eq("0.0.1")
ensure
tmp.cleanup
end
end
it "version properly after 5th commit" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
tmp.exec %(git tag "1.1.0")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "3")
tmp.exec %(git tag "1.2.0")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "4")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "5")
version = git.get_new_version
version.should eq("1.2.1")
ensure
tmp.cleanup
end
end
it "version properly with concurrent features" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b feature1)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "feature: 2")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("1.1.0-feature1.1.#{hash}")
tmp.exec %(git checkout master)
tmp.exec %(git checkout -b feature2)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 3")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("2.0.0-feature2.1.#{hash}")
tmp.exec %(git checkout master)
tmp.exec %(git merge feature2)
version = git.get_new_version
version.should eq("2.0.0")
tmp.exec %(git tag "2.0.0")
tmp.exec %(git checkout -b feature3)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "4")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("2.0.1-feature3.1.#{hash}")
tmp.exec %(git checkout master)
tmp.exec %(git merge --no-gpg-sign feature1)
version = git.get_new_version
version.should eq("2.1.0")
tmp.exec %(git tag "2.1.0")
tmp.exec %(git merge --no-gpg-sign feature3)
version = git.get_new_version
version.should eq("2.1.1")
tmp.exec %(git tag "2.1.1")
ensure
tmp.cleanup
end
end
it "version releases with rebase from master" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
hash = git.current_commit_hash
version = git.get_new_version
version.should eq("1.0.1-SNAPSHOT.1.#{hash}")
tmp.exec %(git checkout -b myfeature)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "3")
tmp.exec %(git checkout dev)
tmp.exec %(git merge myfeature)
tmp.exec %(git checkout master)
tmp.exec %(git rebase --no-gpg-sign dev)
version = git.get_new_version
version.should eq("1.0.1")
ensure
tmp.cleanup
end
end
it "bump version only once in presence of merge commit message" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 2")
tmp.exec %(git checkout master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "3")
tmp.exec %(git checkout dev)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "4")
tmp.exec %(git rebase --no-gpg-sign master)
tmp.exec %(git checkout master)
tmp.exec %(git merge --no-gpg-sign --no-ff dev)
# e.g. commit added when merging by bitbucket, no easy way to produce it automatically...
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "Merged xyz (123) breaking:")
version = git.get_new_version
version.should eq("2.0.0")
ensure
tmp.cleanup
end
end
it "when in master should not consider pre-release versions for major bumps" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 2")
version = git.get_new_version
hash = git.current_commit_hash
tmp.exec %(git tag "#{version}")
version.should eq("2.0.0-SNAPSHOT.1.#{hash}")
tmp.exec %(git checkout master)
tmp.exec %(git merge --no-gpg-sign --no-ff dev)
version = git.get_new_version
version.should eq("2.0.0")
ensure
tmp.cleanup
end
end
it "when in master should not consider pre-release versions for minor bumps" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
version = git.get_new_version
hash = git.current_commit_hash
tmp.exec %(git tag "#{version}")
version.should eq("1.0.1-SNAPSHOT.1.#{hash}")
tmp.exec %(git checkout master)
tmp.exec %(git merge --no-gpg-sign --no-ff dev)
version = git.get_new_version
version.should eq("1.0.1")
ensure
tmp.cleanup
end
end
it "bump properly major and reset minor" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "0.1.0")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m ":breaking: 2")
version = git.get_new_version
version.should eq("1.0.0")
ensure
tmp.cleanup
end
end
it "should bump the breaking even with a pre-release tag" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "0.1.0")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "feature: 2")
tmp.exec %(git tag "0.2.0-asd")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m ":breaking: 2")
version = git.get_new_version
version.should eq("1.0.0")
ensure
tmp.cleanup
end
end
it "should bump the breaking even without any other tag" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 1")
version = git.get_new_version
version.should eq("1.0.0")
ensure
tmp.cleanup
end
end
it "should fallback to tag detection if in detached HEAD(on a tag)" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 1")
tmp.exec %(git tag v1)
tmp.exec %(git checkout v1)
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("1.0.0-v1.1.#{hash}")
ensure
tmp.cleanup
end
end
it "should properly manage prefixes" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "v")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "feature: 1")
tmp.exec %(git tag "v1.1.0")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "2")
version = git.get_new_version
version.should eq("v1.1.1")
ensure
tmp.cleanup
end
end
it "non-prefixed tags should be ignored if prefix is enabled" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "v")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
version = git.get_new_version
version.should eq("v0.0.1")
ensure
tmp.cleanup
end
end
it "should properly manage a tag with only prefix" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "v")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "v")
version = git.get_new_version
version.should eq("v0.0.1")
ensure
tmp.cleanup
end
end
it "should count the commits distance" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git checkout -b v1)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 1")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 2")
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "breaking: 3")
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("1.0.0-v1.3.#{hash}")
ensure
tmp.cleanup
end
end
it "ignore non log-path filtered breaking messages" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "", "dir2/")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git checkout -b v1)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
# Create dir1 and tag 1.0.0
tmp.exec %(mkdir dir1 && touch dir1/dummy_file)
tmp.exec %(git add dir1/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 2")
tmp.exec %(git tag "1.0.0")
# Create dir2 and commit
tmp.exec %(mkdir dir2 && touch dir2/dummy_file)
tmp.exec %(git add dir2/)
tmp.exec %(git commit --no-gpg-sign -m "3")
# git-version on dir2 should ignore tag on commit with dir1
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("1.0.1-v1.1.#{hash}")
ensure
tmp.cleanup
end
end
it "ignore log-path filtered breaking messages with multiple paths" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "", "dir1/ dir3/")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
# Create dir1 and tag 1.0.0
base_dir = "dir1"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
# Create dir2 and commit breaking (to be ignored)
base_dir = "dir2"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 2")
# Create dir3 and commit non-breaking
base_dir = "dir3"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "3")
tmp.exec %(git checkout master)
tmp.exec %(git merge --no-gpg-sign --no-ff dev)
# git-version should ignore the breaking tag on commit with dir2
version = git.get_new_version
version.should eq("1.0.1")
ensure
tmp.cleanup
end
end
it "accept log-path filtered breaking messages with multiple paths" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "", "dir2/ dir3/")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
# Create dir1 and tag 1.0.0
base_dir = "dir1"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(git checkout -b dev)
# Create dir2 and commit breaking
base_dir = "dir2"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 2")
# Create dir3 and commit non-breaking
base_dir = "dir3"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "3")
tmp.exec %(git checkout master)
tmp.exec %(git merge --no-gpg-sign --no-ff dev)
# git-version should accept the breaking tag on commit with dir2
version = git.get_new_version
version.should eq("2.0.0")
ensure
tmp.cleanup
end
end
it "accept breaking messages if part of the log-path filter" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "", "dir1/")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git checkout -b v1)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "1.0.0")
tmp.exec %(mkdir dir1 && touch dir1/dummy_file)
tmp.exec %(git add dir1/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 2")
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("2.0.0-v1.1.#{hash}")
ensure
tmp.cleanup
end
end
it "monorepo log-path filter (multiple dirs, multiple prefixes)" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "dir2-", "dir2/ dir3/")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
# Create dir1 and tag dir1-1.0.0
base_dir = "dir1"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 1")
tmp.exec %(git tag "dir1-1.0.0")
# Create dir2 and tag dir2-1.0.0
base_dir = "dir2"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 2")
tmp.exec %(git tag "dir2-1.0.0")
tmp.exec %(git checkout -b dev)
# Create dir2 and commit breaking
base_dir = "dir2"
tmp.exec %(mkdir -p #{base_dir} && touch #{base_dir}/dummy_file_2)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "breaking: 3")
# git-version should accept the breaking tag on commit with dir2
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("dir2-2.0.0-SNAPSHOT.1.#{hash}")
ensure
tmp.cleanup
end
end
it "should not bump version if no commit matches log-path filter" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "dir1-", "dir1/")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
# Create dir1 and tag dir1-1.0.0
base_dir = "dir1"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "feature: 1")
tmp.exec %(git tag "dir1-1.0.0")
# Create dir2 and tag dir2-1.0.0
base_dir = "dir2"
tmp.exec %(mkdir #{base_dir} && touch #{base_dir}/dummy_file)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "feature: 2")
tmp.exec %(git tag "dir2-1.0.0")
# Commit feature in dir2
base_dir = "dir2"
tmp.exec %(mkdir -p #{base_dir} && touch #{base_dir}/dummy_file_2)
tmp.exec %(git add #{base_dir}/)
tmp.exec %(git commit --no-gpg-sign -m "feature: 3")
# git-version should not bump version for dir1
version = git.get_new_version
version.should eq("dir1-1.0.0")
ensure
tmp.cleanup
end
end
it "should truncate long branch names in tags" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b very-very-very-very-long-branch-name-that-excedes-k8s-limits)
tmp.exec %(git commit -m "commit" --allow-empty)
tmp.exec %(git tag "100.100.100")
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("100.100.100-veryveryveryverylongbranchname.0.#{hash}")
tmp.exec %(git commit -m "commit" --allow-empty)
version = git.get_new_version
hash = git.current_commit_hash
version.should eq("100.100.101-veryveryveryverylongbranchname.1.#{hash}")
ensure
tmp.cleanup
end
end
end
it "get previous version - first commit" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir)
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
# git-version should accept the breaking tag on commit with dir2
version = git.get_previous_version
version.should eq("0.0.0")
ensure
tmp.cleanup
end
end
it "get previous version - first commit w/ prefix" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "v")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
# git-version should accept the breaking tag on commit with dir2
version = git.get_previous_version
version.should eq("v0.0.0")
ensure
tmp.cleanup
end
end
it "get previous version - pre-tagged" do
tmp = InTmp.new
begin
git = GitVersion::Git.new("dev", "master", "feature:", "breaking:", tmp.@tmpdir, "v")
tmp.exec %(git init)
tmp.exec %(git checkout -b master)
tmp.exec %(git commit --no-gpg-sign --allow-empty -m "1")
tmp.exec %(git tag "v1.0.0")
# git-version should accept the breaking tag on commit with dir2
version = git.get_previous_version
version.should eq("v1.0.0")
ensure
tmp.cleanup
end
end