2012-06-27 13:32:56 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::API do
|
2012-08-25 19:31:50 +02:00
|
|
|
include ApiHelpers
|
|
|
|
|
2012-06-27 13:32:56 +02:00
|
|
|
let(:user) { Factory :user }
|
|
|
|
|
|
|
|
describe "GET /users" do
|
2012-09-12 14:11:56 +02:00
|
|
|
context "when unauthenticated" do
|
|
|
|
it "should return authentication error" do
|
|
|
|
get api("/users")
|
|
|
|
response.status.should == 401
|
|
|
|
end
|
2012-06-27 13:32:56 +02:00
|
|
|
end
|
|
|
|
|
2012-09-12 14:11:56 +02:00
|
|
|
context "when authenticated" do
|
2012-06-27 13:32:56 +02:00
|
|
|
it "should return an array of users" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/users", user)
|
2012-06-27 13:32:56 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response.should be_an Array
|
|
|
|
json_response.first['email'].should == user.email
|
2012-06-27 13:32:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /users/:id" do
|
|
|
|
it "should return a user by id" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/users/#{user.id}", user)
|
2012-06-27 13:32:56 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response['email'].should == user.email
|
2012-06-27 13:32:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /user" do
|
|
|
|
it "should return current user" do
|
2012-08-25 19:43:55 +02:00
|
|
|
get api("/user", user)
|
2012-06-27 13:32:56 +02:00
|
|
|
response.status.should == 200
|
2012-07-04 09:48:00 +02:00
|
|
|
json_response['email'].should == user.email
|
2012-06-27 13:32:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|