Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add specs for CLI
  • Loading branch information
NARKOZ committed May 16, 2014
1 parent 5ec08bc commit 0bba284
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
68 changes: 68 additions & 0 deletions spec/gitlab/cli_spec.rb
@@ -0,0 +1,68 @@
require 'spec_helper'

describe Gitlab::CLI do
describe ".run" do
context "when command is version" do
it "should show gem version" do
output = capture_output { Gitlab::CLI.run('-v') }
expect(output).to eq("Gitlab Ruby Gem #{Gitlab::VERSION}\n")
end
end

context "when command is help" do
it "should show available actions" do
output = capture_output { Gitlab::CLI.run('help') }
expect(output).to include('Available commands:')
end
end

context "when command is user" do
before do
stub_get("/user", "user")
@output = capture_output { Gitlab::CLI.run('user') }
end

it "should show executed command" do
expect(@output).to include('Gitlab.user')
end

it "should show user data" do
expect(@output).to include('name')
expect(@output).to include('John Smith')
end
end
end

describe ".start" do
context "when command with excluded fields" do
before do
stub_get("/user", "user")
args = ['user', '--except=id,email,name']
@output = capture_output { Gitlab::CLI.start(args) }
end

it "should show user data with excluded fields" do
expect(@output).to_not include('John Smith')
expect(@output).to include('bio')
expect(@output).to include('created_at')
end
end

context "when command with required fields" do
before do
stub_get("/user", "user")
args = ['user', '--only=id,email,name']
@output = capture_output { Gitlab::CLI.start(args) }
end

it "should show user data with required fields" do
expect(@output).to include('id')
expect(@output).to include('name')
expect(@output).to include('email')
expect(@output).to include('John Smith')
expect(@output).to_not include('bio')
expect(@output).to_not include('created_at')
end
end
end
end
11 changes: 11 additions & 0 deletions spec/spec_helper.rb
Expand Up @@ -2,6 +2,17 @@
require 'webmock/rspec'

require File.expand_path('../../lib/gitlab', __FILE__)
require File.expand_path('../../lib/gitlab/cli', __FILE__)

def capture_output
out = StringIO.new
$stdout = out
$stderr = out
yield
$stdout = STDOUT
$stderr = STDERR
out.string
end

def load_fixture(name)
File.new(File.dirname(__FILE__) + "/fixtures/#{name}.json")
Expand Down

0 comments on commit 0bba284

Please sign in to comment.