-
Notifications
You must be signed in to change notification settings - Fork 2k
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
4 changed files
with
84 additions
and
11 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
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
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
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,65 @@ | ||
package command | ||
|
||
import ( | ||
"strings" | ||
"testing" | ||
|
||
"github.com/mitchellh/cli" | ||
) | ||
|
||
func TestLogsCommand_Implements(t *testing.T) { | ||
var _ cli.Command = &LogsCommand{} | ||
} | ||
|
||
func TestLogsCommand_Fails(t *testing.T) { | ||
srv, _, url := testServer(t, nil) | ||
defer srv.Stop() | ||
|
||
ui := new(cli.MockUi) | ||
cmd := &LogsCommand{Meta: Meta{Ui: ui}} | ||
|
||
// Fails on misuse | ||
if code := cmd.Run([]string{"some", "bad", "args"}); code != 1 { | ||
t.Fatalf("expected exit code 1, got: %d", code) | ||
} | ||
if out := ui.ErrorWriter.String(); !strings.Contains(out, cmd.Help()) { | ||
t.Fatalf("expected help output, got: %s", out) | ||
} | ||
ui.ErrorWriter.Reset() | ||
|
||
// Fails on connection failure | ||
if code := cmd.Run([]string{"-address=nope", "foobar"}); code != 1 { | ||
t.Fatalf("expected exit code 1, got: %d", code) | ||
} | ||
if out := ui.ErrorWriter.String(); !strings.Contains(out, "Error querying allocation") { | ||
t.Fatalf("expected failed query error, got: %s", out) | ||
} | ||
ui.ErrorWriter.Reset() | ||
|
||
// Fails on missing alloc | ||
if code := cmd.Run([]string{"-address=" + url, "26470238-5CF2-438F-8772-DC67CFB0705C"}); code != 1 { | ||
t.Fatalf("expected exit 1, got: %d", code) | ||
} | ||
if out := ui.ErrorWriter.String(); !strings.Contains(out, "No allocation(s) with prefix or id") { | ||
t.Fatalf("expected not found error, got: %s", out) | ||
} | ||
ui.ErrorWriter.Reset() | ||
|
||
// Fail on identifier with too few characters | ||
if code := cmd.Run([]string{"-address=" + url, "2"}); code != 1 { | ||
t.Fatalf("expected exit 1, got: %d", code) | ||
} | ||
if out := ui.ErrorWriter.String(); !strings.Contains(out, "must contain at least two characters.") { | ||
t.Fatalf("expected too few characters error, got: %s", out) | ||
} | ||
ui.ErrorWriter.Reset() | ||
|
||
// Identifiers with uneven length should produce a query result | ||
if code := cmd.Run([]string{"-address=" + url, "123"}); code != 1 { | ||
t.Fatalf("expected exit 1, got: %d", code) | ||
} | ||
if out := ui.ErrorWriter.String(); !strings.Contains(out, "No allocation(s) with prefix or id") { | ||
t.Fatalf("expected not found error, got: %s", out) | ||
} | ||
|
||
} |