|
6 | 6 | let(:output) { StringIO.new }
|
7 | 7 | let(:formatter) { described_class.new(output) }
|
8 | 8 | subject(:output_string) { output.string }
|
| 9 | + let(:skip) { false } |
| 10 | + |
| 11 | + let(:location) { './spec/models/user_spec.rb:12' } |
| 12 | + |
| 13 | + let(:pending_message) { 'Not yet implemented' } |
9 | 14 |
|
10 | 15 | let(:execution_result) do
|
11 | 16 | double(
|
12 | 17 | 'RSpec::Core::Example::ExecutionResult',
|
13 |
| - pending_message: 'Not yet implemented' |
| 18 | + pending_message: pending_message |
14 | 19 | )
|
15 | 20 | end
|
16 | 21 |
|
|
20 | 25 | execution_result: execution_result,
|
21 | 26 | full_description: 'User is expected to validate presence of name',
|
22 | 27 | description: 'is expected to validate presence of name',
|
23 |
| - location: './spec/models/user_spec.rb:12' |
| 28 | + location: location, |
| 29 | + skip: skip |
24 | 30 | )
|
25 | 31 | end
|
26 | 32 |
|
|
30 | 36 | .and_return(File.join(Dir.pwd, 'spec/models/user_spec.rb'))
|
31 | 37 | end
|
32 | 38 |
|
33 |
| - describe '::relative_path' do |
34 |
| - around do |example| |
35 |
| - saved_github_workspace = ENV['GITHUB_WORKSPACE'] |
36 |
| - ENV['GITHUB_WORKSPACE'] = github_workspace |
37 |
| - |
38 |
| - FileUtils.mkpath File.dirname(absolute_path) |
39 |
| - FileUtils.touch absolute_path |
40 |
| - |
41 |
| - Dir.chdir tmpdir do |
42 |
| - example.run |
43 |
| - end |
44 |
| - ensure |
45 |
| - FileUtils.rm_r tmpdir |
46 |
| - ENV['GITHUB_WORKSPACE'] = saved_github_workspace |
47 |
| - end |
48 |
| - |
49 |
| - let(:tmpdir) { Dir.mktmpdir } |
50 |
| - let(:relative_path) { 'this/is/a/relative_path.rb' } |
51 |
| - let(:absolute_path) { File.join(tmpdir, relative_path) } |
52 |
| - |
53 |
| - context 'if GITHUB_WORKSPACE is set' do |
54 |
| - let(:github_workspace) { tmpdir } |
55 |
| - |
56 |
| - it 'returns the path relative to it when already inside it' do |
57 |
| - expect(described_class.relative_path('this/is/a/relative_path.rb')).to eq('this/is/a/relative_path.rb') |
58 |
| - end |
59 |
| - |
60 |
| - it 'returns the path relative to it when in a subdirectory of it' do |
61 |
| - Dir.chdir 'this/is' do |
62 |
| - expect(described_class.relative_path('a/relative_path.rb')).to eq('this/is/a/relative_path.rb') |
63 |
| - end |
64 |
| - end |
65 |
| - end |
66 |
| - |
67 |
| - context 'if GITHUB_WORKSPACE is unset' do |
68 |
| - let(:github_workspace) { nil } |
69 |
| - |
70 |
| - it 'returns the unchanged relative path' do |
71 |
| - expect(described_class.relative_path('this/is/a/relative_path.rb')).to eq 'this/is/a/relative_path.rb' |
72 |
| - end |
73 |
| - |
74 |
| - it 'returns the relative path without a ./ prefix' do |
75 |
| - expect(described_class.relative_path('./this/is/a/relative_path.rb')).to eq 'this/is/a/relative_path.rb' |
76 |
| - end |
77 |
| - end |
78 |
| - end |
79 |
| - |
80 | 39 | describe '#example_failed' do
|
81 | 40 | before { formatter.example_failed(notification) }
|
82 | 41 |
|
|
98 | 57 | it 'outputs the GitHub annotation formatted error' do
|
99 | 58 | is_expected.to eq <<~MESSAGE
|
100 | 59 |
|
101 |
| - ::error file=spec/models/user_spec.rb,line=12::#{notification.message_lines.join('%0A')} |
| 60 | + ::error file=spec/models/user_spec.rb,line=12::#{example.full_description}%0A%0A#{notification.message_lines.join('%0A')} |
102 | 61 | MESSAGE
|
103 | 62 | end
|
| 63 | + |
| 64 | + context 'relative_path to GITHUB_WORKSPACE' do |
| 65 | + around do |example| |
| 66 | + saved_github_workspace = ENV['GITHUB_WORKSPACE'] |
| 67 | + ENV['GITHUB_WORKSPACE'] = tmpdir |
| 68 | + |
| 69 | + FileUtils.mkpath File.dirname(absolute_path) |
| 70 | + FileUtils.touch absolute_path |
| 71 | + |
| 72 | + Dir.chdir tmpdir do |
| 73 | + example.run |
| 74 | + end |
| 75 | + ensure |
| 76 | + FileUtils.rm_r tmpdir |
| 77 | + ENV['GITHUB_WORKSPACE'] = saved_github_workspace |
| 78 | + end |
| 79 | + |
| 80 | + let(:tmpdir) { Dir.mktmpdir } |
| 81 | + let(:relative_path) { 'this/is/a/relative_path.rb' } |
| 82 | + let(:absolute_path) { File.join(tmpdir, relative_path) } |
| 83 | + |
| 84 | + context 'inside root dir' do |
| 85 | + let(:github_workspace) { tmpdir } |
| 86 | + let(:location) { './this/is/a/relative_path.rb' } |
| 87 | + |
| 88 | + it 'returns the relative path' do |
| 89 | + is_expected.to include 'this/is/a/relative_path.rb' |
| 90 | + end |
| 91 | + end |
| 92 | + context 'inside subdirectory dir' do |
| 93 | + let(:github_workspace) { tmpdir } |
| 94 | + let(:location) { './a/relative_path.rb' } |
| 95 | + around do |example| |
| 96 | + Dir.chdir 'this/is' do |
| 97 | + example.run |
| 98 | + end |
| 99 | + end |
| 100 | + |
| 101 | + it 'returns the relative path' do |
| 102 | + is_expected.to include 'this/is/a/relative_path.rb' |
| 103 | + end |
| 104 | + end |
| 105 | + end |
104 | 106 | end
|
105 | 107 |
|
106 | 108 | describe '#example_pending' do
|
|
113 | 115 | )
|
114 | 116 | end
|
115 | 117 |
|
116 |
| - it 'outputs the GitHub annotation formatted error' do |
117 |
| - is_expected.to eq <<~MESSAGE |
| 118 | + context 'when pending' do |
| 119 | + it 'outputs the GitHub annotation formatted warning' do |
| 120 | + is_expected.to eq <<~MESSAGE |
118 | 121 |
|
119 |
| - ::warning file=spec/models/user_spec.rb,line=12::#{example.full_description} |
120 |
| - MESSAGE |
| 122 | + ::warning file=spec/models/user_spec.rb,line=12::#{example.full_description}%0A%0APending: #{pending_message} |
| 123 | + MESSAGE |
| 124 | + end |
| 125 | + end |
| 126 | + |
| 127 | + context 'when skipped' do |
| 128 | + let(:skip) { true } |
| 129 | + |
| 130 | + it 'outputs the GitHub annotation formatted warning' do |
| 131 | + is_expected.to eq <<~MESSAGE |
| 132 | +
|
| 133 | + ::warning file=spec/models/user_spec.rb,line=12::#{example.full_description}%0A%0ASkipped: #{pending_message} |
| 134 | + MESSAGE |
| 135 | + end |
121 | 136 | end
|
122 | 137 | end
|
123 | 138 | end
|
0 commit comments