-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathrepo_test.rb
917 lines (745 loc) · 28.2 KB
/
repo_test.rb
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
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
require 'test_helper'
require 'base64'
class RepositoryTest < Rugged::TestCase
def setup
@repo = FixtureRepo.from_libgit2 "testrepo.git"
end
def test_last_commit
assert @repo.respond_to? :last_commit
assert "a65fedf39aefe402d3bb6e24df4d4f5fe4547750", @repo.last_commit.oid
end
def test_fails_to_open_unexisting_repos
assert_raises IOError, Rugged::OSError do
Rugged::Repository.new("fakepath/123/")
end
assert_raises Rugged::RepositoryError do
Rugged::Repository.new("test")
end
end
def test_can_check_if_objects_exist
assert @repo.exists?("8496071c1b46c854b31185ea97743be6a8774479")
assert @repo.exists?("1385f264afb75a56a5bec74243be9b367ba4ca08")
assert [email protected]?("ce08fe4884650f067bd5703b6a59a8b3b3c99a09")
assert [email protected]?("8496071c1c46c854b31185ea97743be6a8774479")
end
def test_can_read_a_raw_object
rawobj = @repo.read("8496071c1b46c854b31185ea97743be6a8774479")
assert_match 'tree 181037049a54a1eb5fab404658a3a250b44335d7', rawobj.data
assert_equal 172, rawobj.len
assert_equal :commit, rawobj.type
end
def test_can_read_object_headers
hash = @repo.read_header("8496071c1b46c854b31185ea97743be6a8774479")
assert_equal 172, hash[:len]
assert_equal :commit, hash[:type]
end
def test_check_reads_fail_on_missing_objects
assert_raises Rugged::OdbError do
@repo.read("a496071c1b46c854b31185ea97743be6a8774471")
end
end
def test_check_read_headers_fail_on_missing_objects
assert_raises Rugged::OdbError do
@repo.read_header("a496071c1b46c854b31185ea97743be6a8774471")
end
end
def test_walking_with_block
oid = "a4a7dce85cf63874e984719f4fdd239f5145052f"
list = []
@repo.walk(oid) { |c| list << c }
assert list.map {|c| c.oid[0,5] }.join('.'), "a4a7d.c4780.9fd73.4a202.5b5b0.84960"
end
def test_walking_without_block
commits = @repo.walk('a4a7dce85cf63874e984719f4fdd239f5145052f')
assert commits.kind_of?(Enumerable)
assert commits.count > 0
end
def test_lookup_object
object = @repo.lookup("8496071c1b46c854b31185ea97743be6a8774479")
assert object.kind_of?(Rugged::Commit)
end
def test_find_reference
ref = @repo.ref('refs/heads/master')
assert ref.kind_of?(Rugged::Reference)
assert_equal 'refs/heads/master', ref.name
end
def test_match_all_refs
refs = @repo.refs 'refs/heads/*'
assert_equal 12, refs.count
end
def test_return_all_ref_names
refs = @repo.ref_names
refs.each {|name| assert name.kind_of?(String)}
assert_equal 21, refs.count
end
def test_return_all_tags
tags = @repo.tags
assert_equal 7, tags.count
end
def test_return_matching_tags
assert_equal 1, @repo.tags.each('e90810b').count
assert_equal 4, @repo.tags.each('*tag*').count
end
def test_return_all_remotes
remotes = @repo.remotes
assert_equal 5, remotes.count
end
def test_lookup_head
head = @repo.head
assert_equal "refs/heads/master", head.name
assert_equal "a65fedf39aefe402d3bb6e24df4d4f5fe4547750", head.target_id
assert_equal :direct, head.type
end
def test_set_head_ref
@repo.head = "refs/heads/packed"
assert_equal "refs/heads/packed", @repo.head.name
end
def test_set_head_invalid
assert_raises Rugged::ReferenceError do
@repo.head = "a65fedf39aefe402d3bb6e24df4d4f5fe4547750"
end
end
def test_access_a_file
sha = 'a65fedf39aefe402d3bb6e24df4d4f5fe4547750'
blob = @repo.blob_at(sha, 'new.txt')
assert_equal "my new file\n", blob.content
end
def test_access_a_missing_file
sha = 'a65fedf39aefe402d3bb6e24df4d4f5fe4547750'
blob = @repo.blob_at(sha, 'file-not-found.txt')
assert_nil blob
end
def test_garbage_collection
Rugged::Repository.new(@repo.path)
ObjectSpace.garbage_collect
end
def test_enumerate_all_objects
assert_equal 1700, @repo.each_id.count
end
def test_loading_alternates
alt_path = File.dirname(__FILE__) + '/fixtures/alternate/objects'
repo = Rugged::Repository.new(@repo.path, :alternates => [alt_path])
assert_equal 1703, repo.each_id.count
assert repo.read('146ae76773c91e3b1d00cf7a338ec55ae58297e2')
end
def test_alternates_with_invalid_path_type
assert_raises TypeError do
Rugged::Repository.new(@repo.path, :alternates => [:invalid_input])
end
end
def test_find_merge_base_between_oids
commit1 = 'a4a7dce85cf63874e984719f4fdd239f5145052f'
commit2 = 'a65fedf39aefe402d3bb6e24df4d4f5fe4547750'
base = 'c47800c7266a2be04c571c04d5a6614691ea99bd'
assert_equal base, @repo.merge_base(commit1, commit2)
end
def test_find_merge_base_between_commits
commit1 = @repo.lookup('a4a7dce85cf63874e984719f4fdd239f5145052f')
commit2 = @repo.lookup('a65fedf39aefe402d3bb6e24df4d4f5fe4547750')
base = 'c47800c7266a2be04c571c04d5a6614691ea99bd'
assert_equal base, @repo.merge_base(commit1, commit2)
end
def test_find_merge_base_between_ref_and_oid
commit1 = 'a4a7dce85cf63874e984719f4fdd239f5145052f'
commit2 = "refs/heads/master"
base = 'c47800c7266a2be04c571c04d5a6614691ea99bd'
assert_equal base, @repo.merge_base(commit1, commit2)
end
def test_find_merge_base_between_many
commit1 = 'a4a7dce85cf63874e984719f4fdd239f5145052f'
commit2 = "refs/heads/packed"
commit3 = @repo.lookup('a65fedf39aefe402d3bb6e24df4d4f5fe4547750')
base = 'c47800c7266a2be04c571c04d5a6614691ea99bd'
assert_equal base, @repo.merge_base(commit1, commit2, commit3)
end
def test_find_merge_bases_between_oids
commit1 = 'a4a7dce85cf63874e984719f4fdd239f5145052f'
commit2 = 'a65fedf39aefe402d3bb6e24df4d4f5fe4547750'
assert_equal [
"c47800c7266a2be04c571c04d5a6614691ea99bd", "9fd738e8f7967c078dceed8190330fc8648ee56a"
], @repo.merge_bases(commit1, commit2)
end
def test_find_merge_bases_between_commits
commit1 = @repo.lookup('a4a7dce85cf63874e984719f4fdd239f5145052f')
commit2 = @repo.lookup('a65fedf39aefe402d3bb6e24df4d4f5fe4547750')
assert_equal [
"c47800c7266a2be04c571c04d5a6614691ea99bd", "9fd738e8f7967c078dceed8190330fc8648ee56a"
], @repo.merge_bases(commit1, commit2)
end
def test_find_merge_bases_between_ref_and_oid
commit1 = 'a4a7dce85cf63874e984719f4fdd239f5145052f'
commit2 = "refs/heads/master"
assert_equal [
"c47800c7266a2be04c571c04d5a6614691ea99bd", "9fd738e8f7967c078dceed8190330fc8648ee56a"
], @repo.merge_bases(commit1, commit2)
end
def test_find_merge_bases_between_many
commit1 = 'a4a7dce85cf63874e984719f4fdd239f5145052f'
commit2 = "refs/heads/packed"
commit3 = @repo.lookup('a65fedf39aefe402d3bb6e24df4d4f5fe4547750')
assert_equal [
"c47800c7266a2be04c571c04d5a6614691ea99bd", "9fd738e8f7967c078dceed8190330fc8648ee56a"
], @repo.merge_bases(commit1, commit2, commit3)
end
def test_ahead_behind_with_oids
ahead, behind = @repo.ahead_behind(
'a4a7dce85cf63874e984719f4fdd239f5145052f',
'a65fedf39aefe402d3bb6e24df4d4f5fe4547750'
)
assert_equal 1, ahead
assert_equal 2, behind
end
def test_ahead_behind_with_commits
ahead, behind = @repo.ahead_behind(
@repo.lookup('a4a7dce85cf63874e984719f4fdd239f5145052f'),
@repo.lookup('a65fedf39aefe402d3bb6e24df4d4f5fe4547750')
)
assert_equal 1, ahead
assert_equal 2, behind
end
def test_expand_objects
expected = {
'a4a7dce8' => 'a4a7dce85cf63874e984719f4fdd239f5145052f',
'a65fedf3' => 'a65fedf39aefe402d3bb6e24df4d4f5fe4547750',
'c47800c7' => 'c47800c7266a2be04c571c04d5a6614691ea99bd'
}
assert_equal expected, @repo.expand_oids(['a4a7dce8', 'a65fedf3', 'c47800c7', 'deadbeef'])
end
def test_expand_and_filter_objects
assert_equal 2, @repo.expand_oids(['a4a7dce8', '1385f264af']).size
assert_equal 1, @repo.expand_oids(['a4a7dce8', '1385f264af'], :commit).size
assert_equal 2, @repo.expand_oids(['a4a7dce8', '1385f264af'], ['commit', 'blob']).size
assert_equal 1, @repo.expand_oids(['a4a7dce8', '1385f264af'], [:commit, :tag]).size
assert_raises RuntimeError do
@repo.expand_oids(['a4a7dce8', '1385f264af'], [:commit, :tag, :commit]).size
end
assert_raises RuntimeError do
@repo.expand_oids(['a4a7dce8', '1385f264af'], [:commit]).size
end
end
def test_descendant_of
# String commit OIDs
assert @repo.descendant_of?("a65fedf39aefe402d3bb6e24df4d4f5fe4547750", "be3563ae3f795b2b4353bcce3a527ad0a4f7f644")
refute @repo.descendant_of?("be3563ae3f795b2b4353bcce3a527ad0a4f7f644", "a65fedf39aefe402d3bb6e24df4d4f5fe4547750")
# Rugged::Commit instances
commit = @repo.lookup("a65fedf39aefe402d3bb6e24df4d4f5fe4547750")
ancestor = @repo.lookup("be3563ae3f795b2b4353bcce3a527ad0a4f7f644")
assert @repo.descendant_of?(commit, ancestor)
refute @repo.descendant_of?(ancestor, commit)
end
def test_descendant_of_bogus_args
# non-existent commit
assert_raises(Rugged::OdbError) do
@repo.descendant_of?("deadbeef" * 5, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750")
end
# non-existent ancestor
assert_raises(Rugged::OdbError) do
@repo.descendant_of?("a65fedf39aefe402d3bb6e24df4d4f5fe4547750", "deadbeef" * 5)
end
# tree OID as the commit
assert_raises(Rugged::InvalidError) do
@repo.descendant_of?("181037049a54a1eb5fab404658a3a250b44335d7", "be3563ae3f795b2b4353bcce3a527ad0a4f7f644")
end
# tree OID as the ancestor
assert_raises(Rugged::InvalidError) do
@repo.descendant_of?("be3563ae3f795b2b4353bcce3a527ad0a4f7f644", "181037049a54a1eb5fab404658a3a250b44335d7")
end
end
end
class MergeCommitsRepositoryTest < Rugged::TestCase
def setup
@repo = FixtureRepo.from_libgit2("merge-resolve")
end
def test_merge_commits
our_commit = @repo.branches["master"].target_id
their_commit = @repo.branches["branch"].target_id
index = @repo.merge_commits(our_commit, their_commit)
assert_equal 8, index.count
assert_equal "233c0919c998ed110a4b6ff36f353aec8b713487", index["added-in-master.txt", 0][:oid]
assert_equal "f2e1550a0c9e53d5811175864a29536642ae3821", index["automergeable.txt", 0][:oid]
assert_equal "4eb04c9e79e88f6640d01ff5b25ca2a60764f216", index["changed-in-branch.txt", 0][:oid]
assert_equal "11deab00b2d3a6f5a3073988ac050c2d7b6655e2", index["changed-in-master.txt", 0][:oid]
assert_equal "d427e0b2e138501a3d15cc376077a3631e15bd46", index["conflicting.txt", 1][:oid]
assert_equal "4e886e602529caa9ab11d71f86634bd1b6e0de10", index["conflicting.txt", 2][:oid]
assert_equal "2bd0a343aeef7a2cf0d158478966a6e587ff3863", index["conflicting.txt", 3][:oid]
assert_equal "c8f06f2e3bb2964174677e91f0abead0e43c9e5d", index["unchanged.txt", 0][:oid]
assert index.conflicts?
end
end
class ShallowRepositoryTest < Rugged::TestCase
def setup
@repo = FixtureRepo.from_libgit2("testrepo.git")
@shallow_repo = FixtureRepo.from_libgit2("shallow.git")
end
def test_is_shallow
refute @repo.shallow?
assert @shallow_repo.shallow?
end
end
class RepositoryWriteTest < Rugged::TestCase
def setup
@source_repo = FixtureRepo.from_rugged("testrepo.git")
@repo = FixtureRepo.clone(@source_repo)
end
TEST_CONTENT = "my test data\n"
TEST_CONTENT_TYPE = 'blob'
def test_can_hash_data
oid = Rugged::Repository.hash_data(TEST_CONTENT, TEST_CONTENT_TYPE)
assert_equal "76b1b55ab653581d6f2c7230d34098e837197674", oid
end
def test_write_to_odb
oid = @repo.write(TEST_CONTENT, TEST_CONTENT_TYPE)
assert_equal "76b1b55ab653581d6f2c7230d34098e837197674", oid
assert @repo.exists?("76b1b55ab653581d6f2c7230d34098e837197674")
end
def test_no_merge_base_between_unrelated_branches
info = @repo.rev_parse('HEAD').to_hash
baseless = Rugged::Commit.create(@repo, info.merge(:parents => []))
assert_nil @repo.merge_base('HEAD', baseless)
end
def test_no_merge_bases_between_unrelated_branches
info = @repo.rev_parse('HEAD').to_hash
baseless = Rugged::Commit.create(@repo, info.merge(:parents => []))
assert_equal [], @repo.merge_bases('HEAD', baseless)
end
def test_default_signature
name = 'Rugged User'
email = '[email protected]'
@repo.config['user.name'] = name
@repo.config['user.email'] = email
assert_equal name, @repo.default_signature[:name]
assert_equal email, @repo.default_signature[:email]
end
def test_ident
assert_nil(@repo.ident[:name])
assert_nil(@repo.ident[:email])
@repo.ident = { name: "Other User" }
assert_equal("Other User", @repo.ident[:name])
assert_nil(@repo.ident[:email])
@repo.ident = { email: "[email protected]" }
assert_nil(@repo.ident[:name])
assert_equal("[email protected]", @repo.ident[:email])
@repo.ident = { name: "Other User", email: "[email protected]" }
assert_equal("Other User", @repo.ident[:name])
assert_equal("[email protected]", @repo.ident[:email])
@repo.ident = {}
assert_nil(@repo.ident[:name])
assert_nil(@repo.ident[:email])
@repo.ident = { name: "Other User", email: "[email protected]" }
@repo.ident = nil
assert_nil(@repo.ident[:name])
assert_nil(@repo.ident[:email])
end
end
class RepositoryDiscoverTest < Rugged::TestCase
def setup
@tmpdir = Dir.mktmpdir
Dir.mkdir(File.join(@tmpdir, 'foo'))
Rugged::TestCase::FixtureRepo.ensure_cleanup @tmpdir
end
def test_discover_false
assert_raises Rugged::RepositoryError do
Rugged::Repository.discover(@tmpdir)
end
end
def test_discover_nested_false
assert_raises Rugged::RepositoryError do
Rugged::Repository.discover(File.join(@tmpdir, 'foo'))
end
end
def test_discover_true
repo = Rugged::Repository.init_at(@tmpdir, true)
root = Rugged::Repository.discover(@tmpdir)
begin
assert root.bare?
assert_equal repo.path, root.path
ensure
repo.close
root.close
end
end
def test_discover_nested_true
repo = Rugged::Repository.init_at(@tmpdir, true)
root = Rugged::Repository.discover(File.join(@tmpdir, 'foo'))
begin
assert root.bare?
assert_equal repo.path, root.path
ensure
repo.close
root.close
end
end
end
class RepositoryInitTest < Rugged::TestCase
def setup
@tmppath = Dir.mktmpdir
Rugged::TestCase::FixtureRepo.ensure_cleanup @tmppath
end
def test_init_bare_false
repo = Rugged::Repository.init_at(@tmppath, false)
begin
refute repo.bare?
ensure
repo.close
end
end
def test_init_bare_true
repo = Rugged::Repository.init_at(@tmppath, true)
begin
assert repo.bare?
ensure
repo.close
end
end
def test_init_bare_truthy
repo = Rugged::Repository.init_at(@tmppath, :bare)
begin
assert repo.bare?
ensure
repo.close
end
end
def test_init_non_bare_default
repo = Rugged::Repository.init_at(@tmppath)
begin
refute repo.bare?
ensure
repo.close
end
end
def test_init_with_pathname
require 'pathname'
repo = Rugged::Repository.init_at(Pathname(@tmppath))
begin
refute repo.bare?
ensure
repo.close
end
end
def test_init_with_wrong_argument
assert_raises(TypeError) do
Rugged::Repository.init_at(@tmppath.to_sym)
end
end
end
class RepositoryCloneTest < Rugged::TestCase
def setup
@tmppath = Dir.mktmpdir
Rugged::TestCase::FixtureRepo.ensure_cleanup @tmppath
@source_path = File.join(Rugged::TestCase::TEST_DIR, 'fixtures', 'testrepo.git')
# file:// with libgit2 on windows fails with a directory not found error
# passing in a literal file path works fine
@source_path.prepend "file://" if !Gem.win_platform?
end
def test_clone
repo = Rugged::Repository.clone_at(@source_path, @tmppath)
begin
assert_equal "hey", File.read(File.join(@tmppath, "README")).chomp
assert_equal "36060c58702ed4c2a40832c51758d5344201d89a", repo.head.target_id
assert_equal "36060c58702ed4c2a40832c51758d5344201d89a", repo.ref("refs/heads/master").target_id
assert_equal "36060c58702ed4c2a40832c51758d5344201d89a", repo.ref("refs/remotes/origin/master").target_id
assert_equal "41bc8c69075bbdb46c5c6f0566cc8cc5b46e8bd9", repo.ref("refs/remotes/origin/packed").target_id
ensure
repo.close
end
end
def test_clone_bare
repo = Rugged::Repository.clone_at(@source_path, @tmppath, :bare => true)
begin
assert repo.bare?
ensure
repo.close
end
end
def test_clone_with_transfer_progress_callback
skip 'Callback does not work with filesystem clone on Windows' if Gem.win_platform?
total_objects = indexed_objects = received_objects = local_objects = total_deltas = indexed_deltas = received_bytes = nil
callsback = 0
repo = Rugged::Repository.clone_at(@source_path, @tmppath, {
transfer_progress: lambda { |*args|
total_objects, indexed_objects, received_objects, local_objects, total_deltas, indexed_deltas, received_bytes = args
callsback += 1
}
})
repo.close
assert_equal 22, callsback
assert_equal 19, total_objects
assert_equal 19, indexed_objects
assert_equal 19, received_objects
assert_equal 0, local_objects
assert_equal 2, total_deltas
assert_equal 2, indexed_deltas
assert_equal 1563, received_bytes
end
def test_clone_with_update_tips_callback
calls = 0
updated_tips = {}
repo = Rugged::Repository.clone_at(@source_path, @tmppath, {
update_tips: lambda { |refname, a, b|
calls += 1
updated_tips[refname] = [a, b]
}
})
repo.close
assert_equal 4, calls
assert_equal({
"refs/remotes/origin/master" => [nil, "36060c58702ed4c2a40832c51758d5344201d89a"],
"refs/remotes/origin/packed" => [nil, "41bc8c69075bbdb46c5c6f0566cc8cc5b46e8bd9"],
"refs/tags/v0.9" => [nil, "5b5b025afb0b4c913b4c338a42934a3863bf3644"],
"refs/tags/v1.0" => [nil, "0c37a5391bbff43c37f0d0371823a5509eed5b1d"],
}, updated_tips)
end
def test_clone_with_branch
repo = Rugged::Repository.clone_at(@source_path, @tmppath, {checkout_branch: "packed"})
begin
assert_equal "what file?\n", File.read(File.join(@tmppath, "second.txt"))
assert_equal repo.head.target_id, repo.ref("refs/heads/packed").target_id
assert_equal "refs/heads/packed", repo.references["HEAD"].target_id
ensure
repo.close
end
end
def test_clone_quits_on_error
begin
Rugged::Repository.clone_at(@source_path, @tmppath, {
transfer_progress: lambda { |*_| raise 'boom' }
})
rescue => e
assert_equal 'boom', e.message
end
end
def test_clone_with_bad_progress_callback
assert_raises ArgumentError do
Rugged::Repository.clone_at(@source_path, @tmppath, {
transfer_progress: Object.new
})
end
assert_no_dotgit_dir(@tmppath)
end
def assert_no_dotgit_dir(path)
assert_equal [], Dir[File.join(path, ".git/**")], "new repository's .git dir should not exist"
end
end
class RepositoryNamespaceTest < Rugged::TestCase
def setup
@repo = FixtureRepo.from_libgit2("testrepo.git")
end
def test_no_namespace
assert_nil @repo.namespace
end
def test_changing_namespace
@repo.namespace = "foo"
assert_equal "foo", @repo.namespace
@repo.namespace = "bar"
assert_equal "bar", @repo.namespace
@repo.namespace = "foo/bar"
assert_equal "foo/bar", @repo.namespace
@repo.namespace = nil
assert_nil @repo.namespace
end
def test_refs_in_namespaces
@repo.namespace = "foo"
assert_equal [], @repo.refs.to_a
end
end
class RepositoryPushTest < Rugged::TestCase
def setup
skip 'local files and file:// protocol handled inconsistently with libgit2 on windows' if Gem.win_platform?
@remote_repo = FixtureRepo.from_libgit2("testrepo.git")
# We can only push to bare repos
@remote_repo.config['core.bare'] = 'true'
@repo = FixtureRepo.clone(@remote_repo)
@repo.references.create("refs/heads/unit_test",
"8496071c1b46c854b31185ea97743be6a8774479")
end
def test_push_single_ref
result = @repo.push("origin", ["refs/heads/master", "refs/heads/master:refs/heads/foobar", "refs/heads/unit_test"])
assert_equal({}, result)
assert_equal "a65fedf39aefe402d3bb6e24df4d4f5fe4547750", @remote_repo.ref("refs/heads/foobar").target_id
assert_equal "8496071c1b46c854b31185ea97743be6a8774479", @remote_repo.ref("refs/heads/unit_test").target_id
end
def test_push_to_remote_instance
result = @repo.push(@repo.remotes["origin"], ["refs/heads/master"])
assert_equal({}, result)
end
def test_push_to_non_bare_raise_error
@remote_repo.config['core.bare'] = 'false'
exception = assert_raises Rugged::InvalidError do
@repo.push("origin", ["refs/heads/master"])
end
assert_equal "local push doesn't (yet) support pushing to non-bare repos.", exception.message
end
def test_push_non_forward_raise_error
exception = assert_raises Rugged::ReferenceError do
@repo.push("origin", ["refs/heads/unit_test:refs/heads/master"])
end
assert_equal "cannot push non-fastforwardable reference", exception.message
assert_equal "a65fedf39aefe402d3bb6e24df4d4f5fe4547750", @remote_repo.ref("refs/heads/master").target_id
end
def test_push_non_forward_forced_raise_no_error
result = @repo.push("origin", ["+refs/heads/unit_test:refs/heads/master"])
assert_equal({}, result)
assert_equal "8496071c1b46c854b31185ea97743be6a8774479", @remote_repo.ref("refs/heads/master").target_id
end
end
class RepositoryAttributesTest < Rugged::TestCase
ATTRIBUTES = <<-ATTR
*.txt linguist-lang=text
new.txt other-attr=this
README is_readme
ATTR
def setup
@repo = FixtureRepo.from_libgit2("testrepo")
@repo.checkout_tree(@repo.rev_parse("refs/heads/dir"), :strategy => :force)
IO.write(File.join(@repo.workdir, ".gitattributes"), ATTRIBUTES)
end
def test_read_attributes_internal
assert_equal 'text', @repo.fetch_attributes('branch_file.txt', 'linguist-lang')
assert_equal 'text', @repo.fetch_attributes('new.txt', 'linguist-lang')
assert_equal 'this', @repo.fetch_attributes('new.txt', 'other-attr')
assert_equal true, @repo.fetch_attributes('README', 'is_readme')
assert_nil @repo.fetch_attributes('README', 'linguist-lang')
end
def test_read_attributes_internal_multi
attr_new = { 'linguist-lang' => 'text', 'other-attr' => 'this' }
assert_equal attr_new, @repo.fetch_attributes('new.txt', ['linguist-lang', 'other-attr'])
attr_readme = { 'is_readme' => true, 'other-attr' => nil}
assert_equal attr_readme, @repo.fetch_attributes('README', ['is_readme', 'other-attr'])
end
def test_read_attributes_internal_hash
attr_new = { 'linguist-lang' => 'text', 'other-attr' => 'this' }
assert_equal attr_new, @repo.fetch_attributes('new.txt')
attr_new = { 'linguist-lang' => 'text' }
assert_equal attr_new, @repo.fetch_attributes('branch_file.txt')
end
def test_attributes
atr = @repo.attributes('new.txt')
assert atr.instance_of? Rugged::Repository::Attributes
assert atr.to_h.instance_of? Hash
assert_equal 'text', atr['linguist-lang']
assert_equal 'this', atr['other-attr']
atr = @repo.attributes('branch_file.txt')
assert_equal 'text', atr['linguist-lang']
assert_nil atr['other-attr']
atr.each do |key, value|
assert key.instance_of? String
assert [String, TrueClass, FalseClass].include? value.class
end
atr = @repo.attributes('new.txt', :priority => [:index])
assert_nil atr['linguist-lang']
assert_nil atr['linguist-lang']
end
end
class RepositoryCheckoutTest < Rugged::TestCase
def setup
@repo = FixtureRepo.from_libgit2("testrepo")
@clone = FixtureRepo.clone(@repo)
_bare = FixtureRepo.from_libgit2("testrepo.git")
@bare = Rugged::Repository.bare(_bare.path)
_bare.close
end
def verify_dir
assert File.exist?(File.join(@repo.workdir, "README"))
assert File.exist?(File.join(@repo.workdir, "branch_file.txt"))
assert File.exist?(File.join(@repo.workdir, "new.txt"))
assert File.exist?(File.join(@repo.workdir, "a/b.txt"))
refute File.exist?(File.join(@repo.workdir, "ab"))
end
def verify_subtrees
assert File.exist?(File.join(@repo.workdir, "README"))
assert File.exist?(File.join(@repo.workdir, "branch_file.txt"))
assert File.exist?(File.join(@repo.workdir, "new.txt"))
assert File.exist?(File.join(@repo.workdir, "ab/4.txt"))
assert File.exist?(File.join(@repo.workdir, "ab/c/3.txt"))
assert File.exist?(File.join(@repo.workdir, "ab/de/2.txt"))
assert File.exist?(File.join(@repo.workdir, "ab/de/fgh/1.txt"))
refute File.exist?(File.join(@repo.workdir, "a"))
end
def test_checkout_tree_with_commit
# the test repo has an unclean status. apparently libgit2 on *nix does not
# care about this when switching trees
# on Windows this errors with CheckoutError: 1 conflict prevents checkout
skip "see comment at #{__FILE__}:#{Integer(__LINE__) - 3}" if Gem.win_platform?
@repo.checkout_tree(@repo.rev_parse("refs/heads/dir"), :strategy => :force)
@repo.head = "refs/heads/dir"
verify_dir
@repo.checkout_tree(@repo.rev_parse("refs/heads/subtrees"), :strategy => :safe)
@repo.head = "refs/heads/subtrees"
verify_subtrees
end
def test_checkout_with_revspec_string
@repo.checkout_tree("refs/heads/dir", :strategy => :force)
@repo.head = "refs/heads/dir"
verify_dir
end
def test_checkout_tree_with_index
index = @repo.index
head = @repo.references["refs/heads/dir"]
index.read_tree head.target.tree
@repo.checkout_index(index, :strategy => :force)
@repo.head = "refs/heads/dir"
verify_dir
end
def test_checkout_tree_raises_errors_in_notify_cb
exception = assert_raises RuntimeError do
@repo.checkout_tree(@repo.rev_parse("refs/heads/dir"), :strategy => :force,
:notify_flags => :all,
:notify => lambda { |*args| raise "fail" })
end
assert_equal exception.message, "fail"
end
def test_checkout_tree_raises_errors_in_progress_cb
exception = assert_raises RuntimeError do
@repo.checkout_tree(@repo.rev_parse("refs/heads/dir"), :strategy => :force,
:progress => lambda { |*args| raise "fail" })
end
assert_equal exception.message, "fail"
end
def test_checkout_tree_subdirectory
refute File.exist?(File.join(@repo.workdir, "ab"))
@repo.checkout_tree(@repo.rev_parse("refs/heads/subtrees"), :strategy => :safe, :paths => "ab/de/")
assert File.exist?(File.join(@repo.workdir, "ab"))
assert File.exist?(File.join(@repo.workdir, "ab/de/2.txt"))
assert File.exist?(File.join(@repo.workdir, "ab/de/fgh/1.txt"))
end
def test_checkout_tree_subtree_directory
refute File.exist?(File.join(@repo.workdir, "de"))
@repo.checkout_tree(@repo.rev_parse("refs/heads/subtrees:ab"), :strategy => :safe, :paths => "de/")
assert File.exist?(File.join(@repo.workdir, "de"))
assert File.exist?(File.join(@repo.workdir, "de/2.txt"))
assert File.exist?(File.join(@repo.workdir, "de/fgh/1.txt"))
end
def test_checkout_tree_raises_with_bare_repo
assert_raises Rugged::RepositoryError do
@bare.checkout_tree("HEAD", :strategy => :safe)
end
end
def test_checkout_tree_works_with_bare_repo_and_target_directory
Dir.mktmpdir("alternative") do |dir|
@bare.checkout_tree("HEAD", :strategy => [:safe, :recreate_missing], :target_directory => dir)
assert File.exist?(File.join(dir, "README"))
assert File.exist?(File.join(dir, "new.txt"))
end
end
def test_checkout_with_branch_updates_HEAD
@repo.checkout("dir", :strategy => :force)
assert_equal "refs/heads/dir", @repo.head.name
end
def test_checkout_with_HEAD
@repo.checkout("dir", :strategy => :force)
File.unlink(File.join(@repo.workdir, "README"))
@repo.checkout("HEAD", :strategy => :force)
assert File.exist?(File.join(@repo.workdir, "README"))
assert_equal "refs/heads/dir", @repo.head.name
end
def test_checkout_with_commit_detaches_HEAD
@repo.checkout(@repo.rev_parse_oid("refs/heads/dir"), :strategy => :force)
assert @repo.head_detached?
assert_equal @repo.rev_parse_oid("refs/heads/dir"), @repo.head.target_id
end
def test_checkout_with_remote_branch_detaches_HEAD
@clone.checkout("origin/dir", :strategy => :force)
assert @clone.head_detached?
assert_equal @clone.rev_parse_oid("refs/remotes/origin/dir"), @clone.head.target_id
end
end