adding ref mat'l, Service tests done

This commit is contained in:
2021-12-10 02:50:30 -05:00
parent eda1777431
commit 94ae20829e
7 changed files with 348 additions and 73 deletions

View File

@@ -1,6 +1,24 @@
package gosecret
import (
`github.com/google/uuid`
)
// Paths.
const (
DbusDefaultCollectionPath string = DbusPath + "/collections/login"
)
// Strings.
const (
defaultCollection string = "default" // SHOULD point to a collection named "login"; "default" is the alias.
testAlias string = "GOSECRET_TESTING_ALIAS"
testSecretContent string = "This is a test secret for gosecret."
testItemLabel string = "gosecret_test_item"
)
// Objects.
var (
collectionName uuid.UUID = uuid.New()
collectionAlias uuid.UUID = uuid.New()
)