BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
cfffc9ef
Commit
cfffc9ef
authored
Jan 05, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update build specs for artifacts browser support
parent
e5d2a81b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
12 deletions
+11
-12
build_spec.rb
spec/models/build_spec.rb
+11
-12
No files found.
spec/models/build_spec.rb
View file @
cfffc9ef
...
...
@@ -394,21 +394,20 @@ describe Ci::Build, models: true do
describe
:artifacts_browser_supported?
do
subject
{
build
.
artifacts_browser_supported?
}
before
do
file
=
fixture_file_upload
(
archive_file
,
archive_type
)
build
.
update_attributes
(
artifacts_file:
file
)
end
context
'artifacts archive is not a zip file'
do
let
(
:archive_file
)
{
Rails
.
root
+
'spec/fixtures/banana_sample.gif'
}
let
(
:archive_type
)
{
'image/gif'
}
context
'artifacts metadata does not exist'
do
it
{
is_expected
.
to
be_falsy
}
end
context
'artifacts archive is a zip file'
do
let
(
:archive_file
)
{
Rails
.
root
+
'spec/fixtures/ci_build_artifacts.zip'
}
let
(
:archive_type
)
{
'application/zip'
}
context
'artifacts archive is a zip file and metadata exists'
do
before
do
fixture_dir
=
Rails
.
root
+
'spec/fixtures/'
archive
=
fixture_file_upload
(
fixture_dir
+
'ci_build_artifacts.zip'
,
'application/zip'
)
metadata
=
fixture_file_upload
(
fixture_dir
+
'ci_build_artifacts_metadata.gz'
,
'application/x-gzip'
)
build
.
update_attributes
(
artifacts_file:
archive
)
build
.
update_attributes
(
artifacts_metadata:
metadata
)
end
it
{
is_expected
.
to
be_truthy
}
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment