diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-11-29 11:57:16 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-11-29 14:14:05 +0100 |
commit | 651eccda62218532b24ff75384c943256bf70224 (patch) | |
tree | 1fb3415c733ffac3ee29aebe011b7c398b1931f6 /spec | |
parent | b8f9949a70005978e83a3aaffbe0836c75d24b74 (diff) | |
download | gitlab-ce-651eccda62218532b24ff75384c943256bf70224.tar.gz |
Expose timestamp in build entity used by serializerfeature/expose-timestimes-in-build-entity
Diffstat (limited to 'spec')
-rw-r--r-- | spec/serializers/build_entity_spec.rb | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/spec/serializers/build_entity_spec.rb b/spec/serializers/build_entity_spec.rb index 6dcfaec259e..60c9642ee2c 100644 --- a/spec/serializers/build_entity_spec.rb +++ b/spec/serializers/build_entity_spec.rb @@ -1,23 +1,30 @@ require 'spec_helper' describe BuildEntity do + let(:build) { create(:ci_build) } + let(:entity) do described_class.new(build, request: double) end subject { entity.as_json } - context 'when build is a regular job' do - let(:build) { create(:ci_build) } + it 'contains paths to build page and retry action' do + expect(subject).to include(:build_path, :retry_path) + end - it 'contains paths to build page and retry action' do - expect(subject).to include(:build_path, :retry_path) - expect(subject).not_to include(:play_path) - end + it 'does not contain sensitive information' do + expect(subject).not_to include(/token/) + expect(subject).not_to include(/variables/) + end + + it 'contains timestamps' do + expect(subject).to include(:created_at, :updated_at) + end - it 'does not contain sensitive information' do - expect(subject).not_to include(/token/) - expect(subject).not_to include(/variables/) + context 'when build is a regular job' do + it 'does not contain path to play action' do + expect(subject).not_to include(:play_path) end end |