-
Notifications
You must be signed in to change notification settings - Fork 220
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
5 changed files
with
9 additions
and
177 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,7 +128,6 @@ func (k macOSXKeychain) DeleteAll(service string) error { | |
return err | ||
} | ||
} | ||
|
||
} | ||
|
||
func init() { | ||
|
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 |
---|---|---|
@@ -1,169 +1,7 @@ | ||
package keyring | ||
|
||
import ( | ||
"runtime" | ||
"strings" | ||
"testing" | ||
) | ||
|
||
const ( | ||
service = "test-service" | ||
user = "test-user" | ||
password = "test-password" | ||
) | ||
|
||
// TestSet tests setting a user and password in the keyring. | ||
func TestSet(t *testing.T) { | ||
err := Set(service, user, password) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
} | ||
|
||
func TestSetTooLong(t *testing.T) { | ||
extraLongPassword := "ba" + strings.Repeat("na", 5000) | ||
err := Set(service, user, extraLongPassword) | ||
|
||
if runtime.GOOS == "windows" || runtime.GOOS == "darwin" { | ||
// should fail on those platforms | ||
if err != ErrSetDataTooBig { | ||
t.Errorf("Should have failed, got: %s", err) | ||
} | ||
} | ||
} | ||
|
||
// TestGetMultiline tests getting a multi-line password from the keyring | ||
func TestGetMultiLine(t *testing.T) { | ||
multilinePassword := `this password | ||
has multiple | ||
lines and will be | ||
encoded by some keyring implementiations | ||
like osx` | ||
err := Set(service, user, multilinePassword) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
pw, err := Get(service, user) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
if multilinePassword != pw { | ||
t.Errorf("Expected password %s, got %s", multilinePassword, pw) | ||
} | ||
} | ||
|
||
// TestGetMultiline tests getting a multi-line password from the keyring | ||
func TestGetUmlaut(t *testing.T) { | ||
umlautPassword := "at least on OSX üöäÜÖÄß will be encoded" | ||
err := Set(service, user, umlautPassword) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
pw, err := Get(service, user) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
if umlautPassword != pw { | ||
t.Errorf("Expected password %s, got %s", umlautPassword, pw) | ||
} | ||
} | ||
|
||
// TestGetSingleLineHex tests getting a single line hex string password from the keyring. | ||
func TestGetSingleLineHex(t *testing.T) { | ||
hexPassword := "abcdef123abcdef123" | ||
err := Set(service, user, hexPassword) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
pw, err := Get(service, user) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
if hexPassword != pw { | ||
t.Errorf("Expected password %s, got %s", hexPassword, pw) | ||
} | ||
} | ||
|
||
// TestGet tests getting a password from the keyring. | ||
func TestGet(t *testing.T) { | ||
err := Set(service, user, password) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
pw, err := Get(service, user) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
if password != pw { | ||
t.Errorf("Expected password %s, got %s", password, pw) | ||
} | ||
} | ||
|
||
// TestGetNonExisting tests getting a secret not in the keyring. | ||
func TestGetNonExisting(t *testing.T) { | ||
_, err := Get(service, user+"fake") | ||
if err != ErrNotFound { | ||
t.Errorf("Expected error ErrNotFound, got %s", err) | ||
} | ||
} | ||
|
||
// TestDelete tests deleting a secret from the keyring. | ||
func TestDelete(t *testing.T) { | ||
err := Delete(service, user) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
} | ||
|
||
// TestDeleteNonExisting tests deleting a secret not in the keyring. | ||
func TestDeleteNonExisting(t *testing.T) { | ||
err := Delete(service, user+"fake") | ||
if err != ErrNotFound { | ||
t.Errorf("Expected error ErrNotFound, got %s", err) | ||
} | ||
} | ||
|
||
// TestDeleteAll tests deleting all secrets for a given service. | ||
func TestDeleteAll(t *testing.T) { | ||
// Set up multiple secrets for the same service | ||
err := Set(service, user, password) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
err = Set(service, user+"2", password+"2") | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
// Delete all secrets for the service | ||
err = DeleteAll(service) | ||
if err != nil { | ||
t.Errorf("Should not fail, got: %s", err) | ||
} | ||
|
||
// Verify that all secrets for the service are deleted | ||
_, err = Get(service, user) | ||
if err != ErrNotFound { | ||
t.Errorf("Expected error ErrNotFound, got %s", err) | ||
} | ||
|
||
_, err = Get(service, user+"2") | ||
if err != ErrNotFound { | ||
t.Errorf("Expected error ErrNotFound, got %s", err) | ||
} | ||
|
||
// Verify that DeleteAll on an empty service doesn't cause an error | ||
err = DeleteAll(service) | ||
if err != nil { | ||
t.Errorf("Should not fail on empty service, got: %s", err) | ||
} | ||
} |
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