summaryrefslogtreecommitdiff
path: root/spec/javascripts/merge_request_tabs_spec.js
blob: 395032a74167d0415de157814e0234321c79cdf8 (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

/*= require merge_request_tabs */

(function() {
  describe('MergeRequestTabs', function() {
    var stubLocation;
    stubLocation = function(stubs) {
      var defaults;
      defaults = {
        pathname: '',
        search: '',
        hash: ''
      };
      return $.extend(defaults, stubs);
    };
    fixture.preload('merge_request_tabs.html');
    beforeEach(function() {
      this["class"] = new MergeRequestTabs();
      return this.spies = {
        ajax: spyOn($, 'ajax').and.callFake(function() {}),
        history: spyOn(history, 'replaceState').and.callFake(function() {})
      };
    });
    describe('#activateTab', function() {
      beforeEach(function() {
        fixture.load('merge_request_tabs.html');
        return this.subject = this["class"].activateTab;
      });
      it('shows the first tab when action is show', function() {
        this.subject('show');
        return expect($('#notes')).toHaveClass('active');
      });
      it('shows the notes tab when action is notes', function() {
        this.subject('notes');
        return expect($('#notes')).toHaveClass('active');
      });
      it('shows the commits tab when action is commits', function() {
        this.subject('commits');
        return expect($('#commits')).toHaveClass('active');
      });
      return it('shows the diffs tab when action is diffs', function() {
        this.subject('diffs');
        return expect($('#diffs')).toHaveClass('active');
      });
    });
    return describe('#setCurrentAction', function() {
      beforeEach(function() {
        return this.subject = this["class"].setCurrentAction;
      });
      it('changes from commits', function() {
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1/commits'
        });
        expect(this.subject('notes')).toBe('/foo/bar/merge_requests/1');
        return expect(this.subject('diffs')).toBe('/foo/bar/merge_requests/1/diffs');
      });
      it('changes from diffs', function() {
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1/diffs'
        });
        expect(this.subject('notes')).toBe('/foo/bar/merge_requests/1');
        return expect(this.subject('commits')).toBe('/foo/bar/merge_requests/1/commits');
      });
      it('changes from diffs.html', function() {
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1/diffs.html'
        });
        expect(this.subject('notes')).toBe('/foo/bar/merge_requests/1');
        return expect(this.subject('commits')).toBe('/foo/bar/merge_requests/1/commits');
      });
      it('changes from notes', function() {
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1'
        });
        expect(this.subject('diffs')).toBe('/foo/bar/merge_requests/1/diffs');
        return expect(this.subject('commits')).toBe('/foo/bar/merge_requests/1/commits');
      });
      it('includes search parameters and hash string', function() {
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1/diffs',
          search: '?view=parallel',
          hash: '#L15-35'
        });
        return expect(this.subject('show')).toBe('/foo/bar/merge_requests/1?view=parallel#L15-35');
      });
      it('replaces the current history state', function() {
        var new_state;
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1'
        });
        new_state = this.subject('commits');
        return expect(this.spies.history).toHaveBeenCalledWith({
          turbolinks: true,
          url: new_state
        }, document.title, new_state);
      });
      return it('treats "show" like "notes"', function() {
        this["class"]._location = stubLocation({
          pathname: '/foo/bar/merge_requests/1/commits'
        });
        return expect(this.subject('show')).toBe('/foo/bar/merge_requests/1');
      });
    });
  });

}).call(this);