summaryrefslogtreecommitdiff
path: root/spec/features/projects/blobs/blob_show_spec.rb
blob: 05fd72a8932e93270cb784cb6daf61a80d19f327 (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
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
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'File blob', :js do
  include MobileHelpers

  let(:project) { create(:project, :public, :repository) }

  def visit_blob(path, anchor: nil, ref: 'master', **additional_args)
    visit project_blob_path(project, File.join(ref, path), anchor: anchor, **additional_args)

    wait_for_requests
  end

  def create_file(file_name, content)
    project.add_maintainer(project.creator)

    Files::CreateService.new(
      project,
      project.creator,
      start_branch: 'master',
      branch_name: 'master',
      commit_message: "Add #{file_name}",
      file_path: file_name,
      file_content: <<-SPEC.strip_heredoc
        #{content}
      SPEC
    ).execute
  end

  context 'with refactor_blob_viewer feature flag enabled' do
    context 'Ruby file' do
      before do
        visit_blob('files/ruby/popen.rb')

        wait_for_requests
      end

      it 'displays the blob' do
        aggregate_failures do
          # shows highlighted Ruby code
          expect(page).to have_css(".js-syntax-highlight")
          expect(page).to have_content("require 'fileutils'")

          # does not show a viewer switcher
          expect(page).not_to have_selector('.js-blob-viewer-switcher')

          # shows an enabled copy button
          expect(page).to have_selector('.js-copy-blob-source-btn:not(.disabled)')

          # shows a raw button
          expect(page).to have_link('Open raw')
        end
      end

      it 'displays file actions on all screen sizes' do
        file_actions_selector = '.file-actions'

        resize_screen_sm
        expect(page).to have_selector(file_actions_selector, visible: true)

        resize_screen_xs
        expect(page).to have_selector(file_actions_selector, visible: true)
      end
    end

    context 'Markdown file' do
      context 'visiting directly' do
        before do
          visit_blob('files/markdown/ruby-style-guide.md')

          wait_for_requests
        end

        it 'displays the blob using the rich viewer' do
          aggregate_failures do
            # hides the simple viewer
            expect(page).not_to have_selector('.blob-viewer[data-type="simple"]')
            expect(page).to have_selector('.blob-viewer[data-type="rich"]')

            # shows rendered Markdown
            expect(page).to have_link("PEP-8")

            # shows a viewer switcher
            expect(page).to have_selector('.js-blob-viewer-switcher')

            # shows a disabled copy button
            expect(page).to have_selector('.js-copy-blob-source-btn.disabled')

            # shows a raw button
            expect(page).to have_link('Open raw')
          end
        end

        context 'switching to the simple viewer' do
          before do
            find('.js-blob-viewer-switch-btn[data-viewer=simple]').click

            wait_for_requests
          end

          it 'displays the blob using the simple viewer' do
            aggregate_failures do
              # hides the rich viewer
              expect(page).to have_selector('.blob-viewer[data-type="simple"]')
              expect(page).not_to have_selector('.blob-viewer[data-type="rich"]')

              # shows highlighted Markdown code
              expect(page).to have_css(".js-syntax-highlight")
              expect(page).to have_content("[PEP-8](http://www.python.org/dev/peps/pep-0008/)")

              # shows an enabled copy button
              expect(page).to have_selector('.js-copy-blob-source-btn:not(.disabled)')
            end
          end

          context 'switching to the rich viewer again' do
            before do
              find('.js-blob-viewer-switch-btn[data-viewer=rich]').click

              wait_for_requests
            end

            it 'displays the blob using the rich viewer' do
              aggregate_failures do
                # hides the simple viewer
                expect(page).not_to have_selector('.blob-viewer[data-type="simple"]')
                expect(page).to have_selector('.blob-viewer[data-type="rich"]')

                # shows a disabled copy button
                expect(page).to have_selector('.js-copy-blob-source-btn.disabled')
              end
            end
          end
        end
      end

      context 'when ref switch' do
        def switch_ref_to(ref_name)
          first('.qa-branches-select').click # rubocop:disable QA/SelectorUsage

          page.within '.project-refs-form' do
            click_link ref_name
            wait_for_requests
          end
        end

        it 'displays no highlighted number of different ref' do
          Files::UpdateService.new(
            project,
            project.first_owner,
            commit_message: 'Update',
            start_branch: 'feature',
            branch_name: 'feature',
            file_path: 'files/js/application.js',
            file_content: 'new content'
          ).execute

          project.commit('feature').diffs.diff_files.first

          visit_blob('files/js/application.js', anchor: 'L3')
          switch_ref_to('feature')

          page.within '.blob-content' do
            expect(page).not_to have_css('.hll')
          end
        end

        context 'successfully change ref of similar name' do
          before do
            project.repository.create_branch('dev')
            project.repository.create_branch('development')
          end

          it 'switch ref from longer to shorter ref name' do
            visit_blob('files/js/application.js', ref: 'development')
            switch_ref_to('dev')

            aggregate_failures do
              expect(page.find('.file-title-name').text).to eq('application.js')
              expect(page).not_to have_css('flash-container')
            end
          end

          it 'switch ref from shorter to longer ref name' do
            visit_blob('files/js/application.js', ref: 'dev')
            switch_ref_to('development')

            aggregate_failures do
              expect(page.find('.file-title-name').text).to eq('application.js')
              expect(page).not_to have_css('flash-container')
            end
          end
        end

        it 'successfully changes ref when the ref name matches the project name' do
          project.repository.create_branch(project.name)

          visit_blob('files/js/application.js', ref: project.name)
          switch_ref_to('master')

          aggregate_failures do
            expect(page.find('.file-title-name').text).to eq('application.js')
            expect(page).not_to have_css('flash-container')
          end
        end
      end
    end

    context 'Markdown rendering' do
      before do
        project.add_maintainer(project.creator)

        Files::CreateService.new(
          project,
          project.creator,
          start_branch: 'master',
          branch_name: 'master',
          commit_message: "Add RedCarpet and CommonMark Markdown ",
          file_path: 'files/commonmark/file.md',
          file_content: "1. one\n  - sublist\n"
        ).execute
      end

      context 'when rendering default markdown' do
        before do
          visit_blob('files/commonmark/file.md')

          wait_for_requests
        end

        it 'renders using CommonMark' do
          aggregate_failures do
            expect(page).to have_content("sublist")
            expect(page).not_to have_xpath("//ol//li//ul")
          end
        end
      end
    end

    context 'Markdown file (stored in LFS)' do
      before do
        project.add_maintainer(project.creator)

        Files::CreateService.new(
          project,
          project.creator,
          start_branch: 'master',
          branch_name: 'master',
          commit_message: "Add Markdown in LFS",
          file_path: 'files/lfs/file.md',
          file_content: project.repository.blob_at('master', 'files/lfs/lfs_object.iso').data
        ).execute
      end

      context 'when LFS is enabled on the project' do
        before do
          allow(Gitlab.config.lfs).to receive(:enabled).and_return(true)
          project.update_attribute(:lfs_enabled, true)

          visit_blob('files/lfs/file.md')

          wait_for_requests
        end

        it 'displays an error' do
          aggregate_failures do
            # hides the simple viewer
            expect(page).not_to have_selector('.blob-viewer[data-type="simple"]')
            expect(page).not_to have_selector('.blob-viewer[data-type="rich"]')

            # shows an error message
            expect(page).to have_content('This content could not be displayed because it is stored in LFS. You can download it instead.')

            # does not show a viewer switcher
            expect(page).not_to have_selector('.js-blob-viewer-switcher')

            # does not show a copy button
            expect(page).not_to have_selector('.js-copy-blob-source-btn')

            # shows a download button
            expect(page).to have_link('Download')
          end
        end
      end

      context 'when LFS is disabled on the project' do
        before do
          visit_blob('files/lfs/file.md')

          wait_for_requests
        end

        it 'displays the blob' do
          aggregate_failures do
            # shows text
            expect(page).to have_content('size 1575078')

            # does not show a viewer switcher
            expect(page).not_to have_selector('.js-blob-viewer-switcher')

            # shows an enabled copy button
            expect(page).to have_selector('.js-copy-blob-source-btn:not(.disabled)')

            # shows a raw button
            expect(page).to have_link('Open raw')
          end
        end
      end
    end

    context 'PDF file' do
      before do
        project.add_maintainer(project.creator)

        Files::CreateService.new(
          project,
          project.creator,
          start_branch: 'master',
          branch_name: 'master',
          commit_message: "Add PDF",
          file_path: 'files/test.pdf',
          file_content: project.repository.blob_at('add-pdf-file', 'files/pdf/test.pdf').data
        ).execute

        visit_blob('files/test.pdf')

        wait_for_requests
      end

      it 'displays the blob' do
        aggregate_failures do
          # shows rendered PDF
          expect(page).to have_selector('.js-pdf-viewer')

          # does not show a viewer switcher
          expect(page).not_to have_selector('.js-blob-viewer-switcher')

          # does not show a copy button
          expect(page).not_to have_selector('.js-copy-blob-source-btn')

          # shows a download button
          expect(page).to have_link('Download')
        end
      end
    end

    context 'Jupiter Notebook file' do
      before do
        project.add_maintainer(project.creator)

        Files::CreateService.new(
          project,
          project.creator,
          start_branch: 'master',
          branch_name: 'master',
          commit_message: "Add Jupiter Notebook",
          file_path: 'files/basic.ipynb',
          file_content: project.repository.blob_at('add-ipython-files', 'files/ipython/basic.ipynb').data
        ).execute

        visit_blob('files/basic.ipynb')

        wait_for_requests
      end

      it 'displays the blob' do
        aggregate_failures do
          # shows rendered notebook
          expect(page).to have_selector('.js-notebook-viewer-mounted')

          # does show a viewer switcher
          expect(page).to have_selector('.js-blob-viewer-switcher')

          # show a disabled copy button
          expect(page).to have_selector('.js-copy-blob-source-btn.disabled')

          # shows a raw button
          expect(page).to have_link('Open raw')

          # shows a download button
          expect(page).to have_link('Download')

          # shows the rendered notebook
          expect(page).to have_content('test')
        end
      end
    end

    context 'ISO file (stored in LFS)' do
      context 'when LFS is enabled on the project' do
        before do
          allow(Gitlab.config.lfs).to receive(:enabled).and_return(true)
          project.update_attribute(:lfs_enabled, true)

          visit_blob('files/lfs/lfs_object.iso')

          wait_for_requests
        end

        it 'displays the blob' do
          aggregate_failures do
            # shows a download link
            expect(page).to have_link('Download (1.50 MiB)')

            # does not show a viewer switcher
            expect(page).not_to have_selector('.js-blob-viewer-switcher')

            # does not show a copy button
            expect(page).not_to have_selector('.js-copy-blob-source-btn')

            # shows a download button
            expect(page).to have_link('Download')
          end
        end
      end

      context 'when LFS is disabled on the project' do
        before do
          visit_blob('files/lfs/lfs_object.iso')

          wait_for_requests
        end

        it 'displays the blob' do
          aggregate_failures do
            # shows text
            expect(page).to have_content('size 1575078')

            # does not show a viewer switcher
            expect(page).not_to have_selector('.js-blob-viewer-switcher')

            # shows an enabled copy button
            expect(page).to have_selector('.js-copy-blob-source-btn:not(.disabled)')

            # shows a raw button
            expect(page).to have_link('Open raw')
          end
        end
      end
    end

    context 'ZIP file' do
      before do
        visit_blob('Gemfile.zip')

        wait_for_requests
      end

      it 'displays the blob' do
        aggregate_failures do
          # shows a download link
          expect(page).to have_link('Download (2.11 KiB)')

          # does not show a viewer switcher
          expect(page).not_to have_selector('.js-blob-viewer-switcher')

          # does not show a copy button
          expect(page).not_to have_selector('.js-copy-blob-source-btn')

          # shows a download button
          expect(page).to have_link('Download')
        end
      end
    end

    context 'empty file' do
      before do
        project.add_maintainer(project.creator)

        Files::CreateService.new(
          project,
          project.creator,
          start_branch: 'master',
          branch_name: 'master',
          commit_message: "Add empty file",
          file_path: 'files/empty.md',
          file_content: ''
        ).execute

        visit_blob('files/empty.md')

        wait_for_requests
      end

      it 'displays an error' do
        aggregate_failures do
          # shows an error message
          expect(page).to have_content('Empty file')

          # does not show a viewer switcher
          expect(page).not_to have_selector('.js-blob-viewer-switcher')

          # does not show a copy button
          expect(page).not_to have_selector('.js-copy-blob-source-btn')

          # does not show a download or raw button
          expect(page).not_to have_link('Download')
          expect(page).not_to have_link('Open raw')
        end
      end
    end

    context 'files with auxiliary viewers' do
      describe '.gitlab-ci.yml' do
        before do
          project.add_maintainer(project.creator)

          Files::CreateService.new(
            project,
            project.creator,
            start_branch: 'master',
            branch_name: 'master',
            commit_message: "Add .gitlab-ci.yml",
            file_path: '.gitlab-ci.yml',
            file_content: File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml'))
          ).execute

          visit_blob('.gitlab-ci.yml')
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            # shows that configuration is valid
            expect(page).to have_content('This GitLab CI configuration is valid.')

            # shows a learn more link
            expect(page).to have_link('Learn more')
          end
        end
      end

      describe '.gitlab/route-map.yml' do
        before do
          project.add_maintainer(project.creator)

          Files::CreateService.new(
            project,
            project.creator,
            start_branch: 'master',
            branch_name: 'master',
            commit_message: "Add .gitlab/route-map.yml",
            file_path: '.gitlab/route-map.yml',
            file_content: <<-MAP.strip_heredoc
              # Team data
              - source: 'data/team.yml'
                public: 'team/'
            MAP
          ).execute

          visit_blob('.gitlab/route-map.yml')
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            # shows that map is valid
            expect(page).to have_content('This Route Map is valid.')

            # shows a learn more link
            expect(page).to have_link('Learn more')
          end
        end
      end

      describe '.gitlab/dashboards/custom-dashboard.yml' do
        before do
          project.add_maintainer(project.creator)

          Files::CreateService.new(
            project,
            project.creator,
            start_branch: 'master',
            branch_name: 'master',
            commit_message: "Add .gitlab/dashboards/custom-dashboard.yml",
            file_path: '.gitlab/dashboards/custom-dashboard.yml',
            file_content: file_content
          ).execute
        end

        context 'with metrics_dashboard_exhaustive_validations feature flag off' do
          before do
            stub_feature_flags(metrics_dashboard_exhaustive_validations: false)
            visit_blob('.gitlab/dashboards/custom-dashboard.yml')
          end

          context 'valid dashboard file' do
            let(:file_content) { File.read(Rails.root.join('config/prometheus/common_metrics.yml')) }

            it 'displays an auxiliary viewer' do
              aggregate_failures do
                # shows that dashboard yaml is valid
                expect(page).to have_content('Metrics Dashboard YAML definition is valid.')

                # shows a learn more link
                expect(page).to have_link('Learn more')
              end
            end
          end

          context 'invalid dashboard file' do
            let(:file_content) { "dashboard: 'invalid'" }

            it 'displays an auxiliary viewer' do
              aggregate_failures do
                # shows that dashboard yaml is invalid
                expect(page).to have_content('Metrics Dashboard YAML definition is invalid:')
                expect(page).to have_content("panel_groups: should be an array of panel_groups objects")

                # shows a learn more link
                expect(page).to have_link('Learn more')
              end
            end
          end
        end

        context 'with metrics_dashboard_exhaustive_validations feature flag on' do
          before do
            stub_feature_flags(metrics_dashboard_exhaustive_validations: true)
            visit_blob('.gitlab/dashboards/custom-dashboard.yml')
          end

          context 'valid dashboard file' do
            let(:file_content) { File.read(Rails.root.join('config/prometheus/common_metrics.yml')) }

            it 'displays an auxiliary viewer' do
              aggregate_failures do
                # shows that dashboard yaml is valid
                expect(page).to have_content('Metrics Dashboard YAML definition is valid.')

                # shows a learn more link
                expect(page).to have_link('Learn more')
              end
            end
          end

          context 'invalid dashboard file' do
            let(:file_content) { "dashboard: 'invalid'" }

            it 'displays an auxiliary viewer' do
              aggregate_failures do
                # shows that dashboard yaml is invalid
                expect(page).to have_content('Metrics Dashboard YAML definition is invalid:')
                expect(page).to have_content("root is missing required keys: panel_groups")

                # shows a learn more link
                expect(page).to have_link('Learn more')
              end
            end
          end
        end
      end

      context 'LICENSE' do
        before do
          visit_blob('LICENSE')
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            # shows license
            expect(page).to have_content('This project is licensed under the MIT License.')

            # shows a learn more link
            expect(page).to have_link('Learn more', href: 'http://choosealicense.com/licenses/mit/')
          end
        end
      end

      context '*.gemspec' do
        before do
          project.add_maintainer(project.creator)

          Files::CreateService.new(
            project,
            project.creator,
            start_branch: 'master',
            branch_name: 'master',
            commit_message: "Add activerecord.gemspec",
            file_path: 'activerecord.gemspec',
            file_content: <<-SPEC.strip_heredoc
              Gem::Specification.new do |s|
                s.platform    = Gem::Platform::RUBY
                s.name        = "activerecord"
              end
            SPEC
          ).execute

          visit_blob('activerecord.gemspec')
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            # shows names of dependency manager and package
            expect(page).to have_content('This project manages its dependencies using RubyGems.')

            # shows a learn more link
            expect(page).to have_link('Learn more', href: 'https://rubygems.org/')
          end
        end
      end

      context 'CONTRIBUTING.md' do
        before do
          file_name = 'CONTRIBUTING.md'

          create_file(file_name, '## Contribution guidelines')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.")
          end
        end
      end

      context 'CHANGELOG.md' do
        before do
          file_name = 'CHANGELOG.md'

          create_file(file_name, '## Changelog for v1.0.0')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("To find the state of this project's repository at the time of any of these versions, check out the tags.")
          end
        end
      end

      context 'Cargo.toml' do
        before do
          file_name = 'Cargo.toml'

          create_file(file_name, '
              [package]
              name = "hello_world" # the name of the package
              version = "0.1.0"    # the current version, obeying semver
              authors = ["Alice <a@example.com>", "Bob <b@example.com>"]
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using Cargo.")
          end
        end
      end

      context 'Cartfile' do
        before do
          file_name = 'Cartfile'

          create_file(file_name, '
              gitlab "Alamofire/Alamofire" == 4.9.0
              gitlab "Alamofire/AlamofireImage" ~> 3.4
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using Carthage.")
          end
        end
      end

      context 'composer.json' do
        before do
          file_name = 'composer.json'

          create_file(file_name, '
              {
                "license": "MIT"
              }
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using Composer.")
          end
        end
      end

      context 'Gemfile' do
        before do
          file_name = 'Gemfile'

          create_file(file_name, '
              source "https://rubygems.org"

              # Gems here
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using Bundler.")
          end
        end
      end

      context 'Godeps.json' do
        before do
          file_name = 'Godeps.json'

          create_file(file_name, '
              {
                "GoVersion": "go1.6"
              }
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using godep.")
          end
        end
      end

      context 'go.mod' do
        before do
          file_name = 'go.mod'

          create_file(file_name, '
              module example.com/mymodule

              go 1.14
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using Go Modules.")
          end
        end
      end

      context 'package.json' do
        before do
          file_name = 'package.json'

          create_file(file_name, '
              {
                "name": "my-awesome-package",
                "version": "1.0.0"
              }
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using npm.")
          end
        end
      end

      context 'podfile' do
        before do
          file_name = 'podfile'

          create_file(file_name, 'platform :ios, "8.0"')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using CocoaPods.")
          end
        end
      end

      context 'test.podspec' do
        before do
          file_name = 'test.podspec'

          create_file(file_name, '
              Pod::Spec.new do |s|
                s.name = "TensorFlowLiteC"
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using CocoaPods.")
          end
        end
      end

      context 'JSON.podspec.json' do
        before do
          file_name = 'JSON.podspec.json'

          create_file(file_name, '
              {
                "name": "JSON"
              }
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using CocoaPods.")
          end
        end
      end

      context 'requirements.txt' do
        before do
          file_name = 'requirements.txt'

          create_file(file_name, 'Project requirements')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using pip.")
          end
        end
      end

      context 'yarn.lock' do
        before do
          file_name = 'yarn.lock'

          create_file(file_name, '
              # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
              # yarn lockfile v1
            ')
          visit_blob(file_name)
        end

        it 'displays an auxiliary viewer' do
          aggregate_failures do
            expect(page).to have_content("This project manages its dependencies using Yarn.")
          end
        end
      end
    end

    context 'realtime pipelines' do
      before do
        Files::CreateService.new(
          project,
          project.creator,
          start_branch: 'feature',
          branch_name: 'feature',
          commit_message: "Add ruby file",
          file_path: 'files/ruby/test.rb',
          file_content: "# Awesome content"
        ).execute

        create(:ci_pipeline, status: 'running', project: project, ref: 'feature', sha: project.commit('feature').sha)
        visit_blob('files/ruby/test.rb', ref: 'feature')
      end

      it 'shows the realtime pipeline status' do
        page.within('.commit-actions') do
          expect(page).to have_css('.ci-status-icon')
          expect(page).to have_css('.ci-status-icon-running')
          expect(page).to have_css('.js-ci-status-icon-running')
        end
      end
    end

    context 'for subgroups' do
      let(:group) { create(:group) }
      let(:subgroup) { create(:group, parent: group) }
      let(:project) { create(:project, :public, :repository, group: subgroup) }

      it 'renders tree table without errors' do
        visit_blob('README.md')

        expect(page).to have_selector('.file-content')
        expect(page).not_to have_selector('[data-testid="alert-danger"]')
      end

      it 'displays a GPG badge' do
        visit_blob('CONTRIBUTING.md', ref: '33f3729a45c02fc67d00adb1b8bca394b0e761d9')

        expect(page).not_to have_selector '.gpg-status-box.js-loading-gpg-badge'
        expect(page).to have_selector '.gpg-status-box.invalid'
      end
    end

    context 'on signed merge commit' do
      it 'displays a GPG badge' do
        visit_blob('conflicting-file.md', ref: '6101e87e575de14b38b4e1ce180519a813671e10')

        expect(page).not_to have_selector '.gpg-status-box.js-loading-gpg-badge'
        expect(page).to have_selector '.gpg-status-box.invalid'
      end
    end

    context 'when static objects external storage is enabled' do
      before do
        stub_application_setting(static_objects_external_storage_url: 'https://cdn.gitlab.com')
      end

      context 'private project' do
        let_it_be(:project) { create(:project, :repository, :private) }
        let_it_be(:user) { create(:user, static_object_token: 'ABCD1234') }

        before do
          project.add_developer(user)

          sign_in(user)
          visit_blob('README.md')
        end

        it 'shows open raw and download buttons with external storage URL prepended and user token appended to their href' do
          path = project_raw_path(project, 'master/README.md')
          raw_uri = "https://cdn.gitlab.com#{path}?token=#{user.static_object_token}"
          download_uri = "https://cdn.gitlab.com#{path}?token=#{user.static_object_token}&inline=false"

          aggregate_failures do
            expect(page).to have_link 'Open raw', href: raw_uri
            expect(page).to have_link 'Download', href: download_uri
          end
        end
      end

      context 'public project' do
        before do
          visit_blob('README.md')
        end

        it 'shows open raw and download buttons with external storage URL prepended to their href' do
          path = project_raw_path(project, 'master/README.md')
          raw_uri = "https://cdn.gitlab.com#{path}"
          download_uri = "https://cdn.gitlab.com#{path}?inline=false"

          aggregate_failures do
            expect(page).to have_link 'Open raw', href: raw_uri
            expect(page).to have_link 'Download', href: download_uri
          end
        end
      end
    end
  end

  context 'with refactor_blob_viewer feature flag disabled' do
    before do
      stub_feature_flags(refactor_blob_viewer: false)
    end

    context 'binary file that appears to be text in the first 1024 bytes' do
      # We need to unsre that this test runs with the refactor_blob_viewer feature flag enabled
      # This will be addressed in https://gitlab.com/gitlab-org/gitlab/-/issues/351559

      before do
        visit_blob('encoding/binary-1.bin', ref: 'binary-encoding')
      end
      it 'displays the blob' do
        aggregate_failures do
          # shows a download link
          expect(page).to have_link('Download (23.8 KB)')
          # does not show a viewer switcher
          expect(page).not_to have_selector('.js-blob-viewer-switcher')
          # The specs below verify an arguably incorrect result, but since we only
          # learn that the file is not actually text once the text viewer content
          # is loaded asynchronously, there is no straightforward way to get these
          # synchronously loaded elements to display correctly.
          #
          # Clicking the copy button will result in nothing being copied.
          # Clicking the raw button will result in the binary file being downloaded,
          # as expected.
          # shows an enabled copy button, incorrectly
          expect(page).to have_selector('.js-copy-blob-source-btn:not(.disabled)')
          # shows a raw button, incorrectly
          expect(page).to have_link('Open raw')
        end
      end
    end
  end
end