File: issue_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (84 lines) | stat: -rw-r--r-- 2,912 bytes parent folder | download
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
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Bitbucket::Representation::Issue, feature_category: :importers do
  describe '#iid' do
    it { expect(described_class.new('id' => 1).iid).to eq(1) }
  end

  describe '#kind' do
    it { expect(described_class.new('kind' => 'bug').kind).to eq('bug') }
  end

  describe '#milestone' do
    it { expect(described_class.new({ 'milestone' => { 'name' => '1.0' } }).milestone).to eq('1.0') }
    it { expect(described_class.new({}).milestone).to be_nil }
  end

  describe '#author' do
    it { expect(described_class.new({ 'reporter' => { 'uuid' => '{123}' } }).author).to eq('{123}') }
    it { expect(described_class.new({ 'reporter' => { 'nickname' => 'Ben' } }).author).to be_nil }
    it { expect(described_class.new({}).author).to be_nil }
  end

  describe '#author_nickname' do
    it { expect(described_class.new({ 'reporter' => { 'nickname' => 'Ben' } }).author_nickname).to eq('Ben') }
    it { expect(described_class.new({}).author_nickname).to be_nil }
  end

  describe '#description' do
    it { expect(described_class.new({ 'content' => { 'raw' => 'Text' } }).description).to eq('Text') }
    it { expect(described_class.new({}).description).to be_nil }
  end

  describe '#state' do
    it { expect(described_class.new({ 'state' => 'invalid' }).state).to eq('closed') }
    it { expect(described_class.new({ 'state' => 'wontfix' }).state).to eq('closed') }
    it { expect(described_class.new({ 'state' => 'resolved' }).state).to eq('closed') }
    it { expect(described_class.new({ 'state' => 'duplicate' }).state).to eq('closed') }
    it { expect(described_class.new({ 'state' => 'closed' }).state).to eq('closed') }
    it { expect(described_class.new({ 'state' => 'opened' }).state).to eq('opened') }
  end

  describe '#title' do
    it { expect(described_class.new('title' => 'Issue').title).to eq('Issue') }
  end

  describe '#created_at' do
    it { expect(described_class.new('created_on' => Date.today).created_at).to eq(Date.today) }
  end

  describe '#updated_at' do
    it { expect(described_class.new('edited_on' => Date.today).updated_at).to eq(Date.today) }
  end

  describe '#to_hash' do
    it do
      raw = {
        'id' => 111,
        'title' => 'title',
        'content' => { 'raw' => 'description' },
        'state' => 'resolved',
        'reporter' => { 'nickname' => 'User1', 'uuid' => '{123}' },
        'milestone' => { 'name' => 1 },
        'created_on' => 'created_at',
        'edited_on' => 'updated_at'
      }

      expected_hash = {
        iid: 111,
        title: 'title',
        description: 'description',
        state: 'closed',
        author: '{123}',
        author_nickname: 'User1',
        milestone: 1,
        created_at: 'created_at',
        updated_at: 'updated_at'
      }

      expect(described_class.new(raw).to_hash).to eq(expected_hash)
    end
  end
end