gosecret/conts_test.go

25 lines
545 B
Go
Raw Normal View History

package gosecret
2021-12-10 02:50:30 -05:00
import (
`github.com/google/uuid`
)
// Paths.
const (
DbusDefaultCollectionPath string = DbusPath + "/collections/login"
)
2021-12-10 02:50:30 -05:00
// 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()
)