-
Notifications
You must be signed in to change notification settings - Fork 89
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
1 changed file
with
27 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 |
---|---|---|
|
@@ -16,6 +16,33 @@ | |
@cli.ssh("example.com") | ||
end | ||
|
||
it "wait's until droplet active if -w command is given" do | ||
stub_request(:get, "https://api.digitalocean.com/v2/droplets?page=1&per_page=1"). | ||
with(:headers => {'Accept'=>'*/*', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Authorization'=>'Bearer foo', 'Content-Type'=>'application/json', 'User-Agent'=>'Faraday v0.9.2'}). | ||
to_return(:status => 200, :body => "", :headers => {}) | ||
|
||
stub_request(:get, "https://api.digitalocean.com/v2/droplets/6918990?per_page=200"). | ||
with(:headers => {'Accept'=>'*/*', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Authorization'=>'Bearer foo', 'Content-Type'=>'application/json', 'User-Agent'=>'Faraday v0.9.2'}). | ||
to_return(:status => 200, :body => fixture('show_droplet'), :headers => {}) | ||
|
||
stub_request(:get, "https://api.digitalocean.com/v2/droplets?page=1&per_page=200"). | ||
to_return(:headers => {'Content-Type' => 'application/json'}, :status => 200, :body => fixture("show_droplets")) | ||
allow(Kernel).to receive(:exec).with('ssh', anything(), anything(),anything(), anything(),anything(), anything(),anything(), anything(),anything(), anything(),anything(), anything(),anything()) | ||
|
||
@cli.options = @cli.options.merge(:wait => true) | ||
|
||
@cli.ssh("example.com") | ||
|
||
expect($stdout.string).to eq <<-eos | ||
Droplet fuzzy name provided. Finding droplet ID...done\e[0m, 6918990 (example.com) | ||
Executing SSH on Droplet (example.com)... | ||
Wait flag given, waiting for droplet to become active | ||
.done\e[0m (0s) | ||
Attempting SSH: [email protected] | ||
SShing with options: -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -i #{Dir.home}/.ssh/id_rsa2 -p 33 [email protected] | ||
eos | ||
end | ||
|
||
it "does not allow ssh into a droplet that is inactive" do | ||
stub_request(:get, "https://api.digitalocean.com/v2/droplets?page=1&per_page=1"). | ||
with(:headers => {'Accept'=>'*/*', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Authorization'=>'Bearer foo', 'Content-Type'=>'application/json', 'User-Agent'=>'Faraday v0.9.2'}). | ||
|