Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
3578153d
Commit
3578153d
authored
Dec 10, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix triggers tests
parent
91cdb08d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
20 deletions
+14
-20
lib/api/triggers.rb
lib/api/triggers.rb
+1
-1
spec/requests/api/triggers_spec.rb
spec/requests/api/triggers_spec.rb
+4
-4
spec/requests/ci/api/triggers_spec.rb
spec/requests/ci/api/triggers_spec.rb
+9
-15
No files found.
lib/api/triggers.rb
View file @
3578153d
...
...
@@ -14,7 +14,7 @@ module API
post
":id/trigger/builds"
do
required_attributes!
[
:ref
,
:token
]
project
=
Project
.
find_with_namespace
(
id
)
||
Project
.
find_by
(
id:
params
[
:id
])
project
=
Project
.
find_with_namespace
(
params
[
:id
]
)
||
Project
.
find_by
(
id:
params
[
:id
])
trigger
=
Ci
::
Trigger
.
find_by_token
(
params
[
:token
].
to_s
)
not_found!
unless
project
&&
trigger
unauthorized!
unless
trigger
.
project
==
project
...
...
spec/requests/api/triggers_spec.rb
View file @
3578153d
...
...
@@ -25,7 +25,7 @@ describe API::API do
end
it
'should return not found if project is not found'
do
post
api
(
'/projects/0/
refs/master/
trigger/builds'
),
options
.
merge
(
ref:
'master'
)
post
api
(
'/projects/0/trigger/builds'
),
options
.
merge
(
ref:
'master'
)
expect
(
response
.
status
).
to
eq
(
404
)
end
...
...
@@ -57,19 +57,19 @@ describe API::API do
end
it
'should validate variables to be a hash'
do
post
api
(
"/projects/
#{
project
.
id
}
/trigger/builds"
),
options
.
merge
(
variables:
'value'
,
ref
s
:
'master'
)
post
api
(
"/projects/
#{
project
.
id
}
/trigger/builds"
),
options
.
merge
(
variables:
'value'
,
ref:
'master'
)
expect
(
response
.
status
).
to
eq
(
400
)
expect
(
json_response
[
'message'
]).
to
eq
(
'variables needs to be a hash'
)
end
it
'should validate variables needs to be a map of key-valued strings'
do
post
api
(
"/projects/
#{
project
.
id
}
/trigger/builds"
),
options
.
merge
(
variables:
{
key:
%w(1 2)
},
ref
s
:
'master'
)
post
api
(
"/projects/
#{
project
.
id
}
/trigger/builds"
),
options
.
merge
(
variables:
{
key:
%w(1 2)
},
ref:
'master'
)
expect
(
response
.
status
).
to
eq
(
400
)
expect
(
json_response
[
'message'
]).
to
eq
(
'variables needs to be a map of key-valued strings'
)
end
it
'create trigger request with variables'
do
post
api
(
"/projects/
#{
project
.
id
}
/trigger/builds"
),
options
.
merge
(
variables:
variables
,
ref
s
:
'master'
)
post
api
(
"/projects/
#{
project
.
id
}
/trigger/builds"
),
options
.
merge
(
variables:
variables
,
ref:
'master'
)
expect
(
response
.
status
).
to
eq
(
201
)
commit
.
builds
.
reload
expect
(
commit
.
builds
.
first
.
trigger_request
.
variables
).
to
eq
(
variables
)
...
...
spec/requests/ci/api/triggers_spec.rb
View file @
3578153d
...
...
@@ -5,16 +5,14 @@ describe Ci::API::API do
describe
'POST /projects/:project_id/refs/:ref/trigger'
do
let!
(
:trigger_token
)
{
'secure token'
}
let!
(
:project
)
{
FactoryGirl
.
create
(
:project
)
}
let!
(
:project2
)
{
FactoryGirl
.
create
(
:empty_project
)
}
let!
(
:project
)
{
FactoryGirl
.
create
(
:project
,
ci_id:
10
)
}
let!
(
:project2
)
{
FactoryGirl
.
create
(
:empty_project
,
ci_id:
11
)
}
let!
(
:trigger
)
{
FactoryGirl
.
create
(
:ci_trigger
,
project:
project
,
token:
trigger_token
)
}
let
(
:options
)
do
{
token:
trigger_token
}
end
let
(
:project_ci_id
)
{
create_ci_id
(
project
)
}
let
(
:project2_ci_id
)
{
create_ci_id
(
project2
)
}
before
do
stub_ci_commit_to_return_yaml_file
...
...
@@ -22,7 +20,7 @@ describe Ci::API::API do
context
'Handles errors'
do
it
'should return bad request if token is missing'
do
post
ci_api
(
"/projects/
#{
project
_
ci_id
}
/refs/master/trigger"
)
post
ci_api
(
"/projects/
#{
project
.
ci_id
}
/refs/master/trigger"
)
expect
(
response
.
status
).
to
eq
(
400
)
end
...
...
@@ -32,7 +30,7 @@ describe Ci::API::API do
end
it
'should return unauthorized if token is for different project'
do
post
ci_api
(
"/projects/
#{
project2
_
ci_id
}
/refs/master/trigger"
),
options
post
ci_api
(
"/projects/
#{
project2
.
ci_id
}
/refs/master/trigger"
),
options
expect
(
response
.
status
).
to
eq
(
401
)
end
end
...
...
@@ -41,14 +39,14 @@ describe Ci::API::API do
let
(
:commit
)
{
project
.
ci_commits
.
last
}
it
'should create builds'
do
post
ci_api
(
"/projects/
#{
project
_
ci_id
}
/refs/master/trigger"
),
options
post
ci_api
(
"/projects/
#{
project
.
ci_id
}
/refs/master/trigger"
),
options
expect
(
response
.
status
).
to
eq
(
201
)
commit
.
builds
.
reload
expect
(
commit
.
builds
.
size
).
to
eq
(
2
)
end
it
'should return bad request with no builds created if there\'s no commit for that ref'
do
post
ci_api
(
"/projects/
#{
project
_
ci_id
}
/refs/other-branch/trigger"
),
options
post
ci_api
(
"/projects/
#{
project
.
ci_id
}
/refs/other-branch/trigger"
),
options
expect
(
response
.
status
).
to
eq
(
400
)
expect
(
json_response
[
'message'
]).
to
eq
(
'No builds created'
)
end
...
...
@@ -59,19 +57,19 @@ describe Ci::API::API do
end
it
'should validate variables to be a hash'
do
post
ci_api
(
"/projects/
#{
project
_
ci_id
}
/refs/master/trigger"
),
options
.
merge
(
variables:
'value'
)
post
ci_api
(
"/projects/
#{
project
.
ci_id
}
/refs/master/trigger"
),
options
.
merge
(
variables:
'value'
)
expect
(
response
.
status
).
to
eq
(
400
)
expect
(
json_response
[
'message'
]).
to
eq
(
'variables needs to be a hash'
)
end
it
'should validate variables needs to be a map of key-valued strings'
do
post
ci_api
(
"/projects/
#{
project
_
ci_id
}
/refs/master/trigger"
),
options
.
merge
(
variables:
{
key:
%w(1 2)
})
post
ci_api
(
"/projects/
#{
project
.
ci_id
}
/refs/master/trigger"
),
options
.
merge
(
variables:
{
key:
%w(1 2)
})
expect
(
response
.
status
).
to
eq
(
400
)
expect
(
json_response
[
'message'
]).
to
eq
(
'variables needs to be a map of key-valued strings'
)
end
it
'create trigger request with variables'
do
post
ci_api
(
"/projects/
#{
project
_
ci_id
}
/refs/master/trigger"
),
options
.
merge
(
variables:
variables
)
post
ci_api
(
"/projects/
#{
project
.
ci_id
}
/refs/master/trigger"
),
options
.
merge
(
variables:
variables
)
expect
(
response
.
status
).
to
eq
(
201
)
commit
.
builds
.
reload
expect
(
commit
.
builds
.
first
.
trigger_request
.
variables
).
to
eq
(
variables
)
...
...
@@ -79,8 +77,4 @@ describe Ci::API::API do
end
end
end
def
create_ci_id
(
project
)
ActiveRecord
::
Base
.
connection
.
insert
(
"INSERT INTO ci_projects (gitlab_id) VALUES(
#{
project
.
id
}
)"
)
end
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