-
-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters