summaryrefslogtreecommitdiff
path: root/spec/lib/bitbucket_server/representation/pull_request_spec.rb
blob: 4b8afdb006bf9c76e8e26adee4cb43945b9310fb (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
require 'spec_helper'

describe BitbucketServer::Representation::PullRequest do
  let(:sample_data) { JSON.parse(fixture_file('importers/bitbucket_server/pull_request.json')) }

  subject { described_class.new(sample_data) }

  describe '#author' do
    it { expect(subject.author).to eq('root') }
  end

  describe '#author_email' do
    it { expect(subject.author_email).to eq('joe.montana@49ers.com') }
  end

  describe '#description' do
    it { expect(subject.description).to eq('Test') }
  end

  describe '#iid' do
    it { expect(subject.iid).to eq(7) }
  end

  describe '#state' do
    it { expect(subject.state).to eq('merged') }

    context 'declined pull requests' do
      before do
        sample_data['state'] = 'DECLINED'
      end

      it 'returns closed' do
        expect(subject.state).to eq('closed')
      end
    end

    context 'open pull requests' do
      before do
        sample_data['state'] = 'OPEN'
      end

      it 'returns open' do
        expect(subject.state).to eq('opened')
      end
    end
  end

  describe '#merged?' do
    it { expect(subject.merged?).to be_truthy }
  end

  describe '#created_at' do
    it { expect(subject.created_at.to_i).to eq(sample_data['createdDate'] / 1000) }
  end

  describe '#updated_at' do
    it { expect(subject.updated_at.to_i).to eq(sample_data['updatedDate'] / 1000) }
  end

  describe '#title' do
    it { expect(subject.title).to eq('Added a new line') }
  end

  describe '#source_branch_name' do
    it { expect(subject.source_branch_name).to eq('refs/heads/root/CODE_OF_CONDUCTmd-1530600625006') }
  end

  describe '#source_branch_sha' do
    it { expect(subject.source_branch_sha).to eq('074e2b4dddc5b99df1bf9d4a3f66cfc15481fdc8') }
  end

  describe '#target_branch_name' do
    it { expect(subject.target_branch_name).to eq('refs/heads/master') }
  end

  describe '#target_branch_sha' do
    it { expect(subject.target_branch_sha).to eq('839fa9a2d434eb697815b8fcafaecc51accfdbbc') }
  end
end