Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh_keys_spec.rb « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fb8c920fb17270f7d4f7848a8cc1d02c562f7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
require 'spec_helper'

describe Gitlab::Keys do
  include ApiHelpers
  let(:user) { 
    user = Factory.create :user
    user.reset_authentication_token!
    user
  }
  let(:key) { Factory.create :key, { user: user}}

  describe "GET /keys" do
    context "when unauthenticated" do
      it "should return authentication error" do
        get api("/keys")
        response.status.should == 401
      end
    end
    context "when authenticated" do
      it "should return array of ssh keys" do
        user.keys << key
        user.save
        get api("/keys", user)
        response.status.should == 200
        json_response.should be_an Array
        json_response.first["title"].should == key.title
      end
    end
  end

  describe "GET /keys/:id" do
    it "should returm single key" do
      user.keys << key
      user.save
      get api("/keys/#{key.id}", user)
      response.status.should == 200
      json_response["title"].should == key.title
    end
    it "should return 404 Not Found within invalid ID" do
      get api("/keys/42", user)
      response.status.should == 404
    end
  end

  describe "POST /keys" do
    it "should not create invalid ssh key" do
      post api("/keys", user), { title: "invalid key" }
      response.status.should == 404
    end
    it "should create ssh key" do
      key_attrs = Factory.attributes :key
      expect {
        post api("/keys", user), key_attrs 
      }.to change{ user.keys.count }.by(1)
    end
  end

  describe "DELETE /keys/:id" do
    it "should delete existed key" do
      user.keys << key
      user.save
      expect {
        delete api("/keys/#{key.id}", user)
      }.to change{user.keys.count}.by(-1)
    end
    it "should return 404 Not Found within invalid ID" do
      delete api("/keys/42", user)
      response.status.should == 404
    end
  end

end