mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
188b9e6eb5
- move cli files from `cli/drone` to `cli/` - move cli main to `cmd/cli/main.go` to match agent and server - use version from `version/version.go` to match agent and server
20 lines
547 B
Go
20 lines
547 B
Go
package internal
|
|
|
|
import "testing"
|
|
|
|
func TestParseKeyPair(t *testing.T) {
|
|
s := []string{"FOO=bar", "BAR=", "BAZ=qux=quux", "INVALID"}
|
|
p := ParseKeyPair(s)
|
|
if p["FOO"] != "bar" {
|
|
t.Errorf("Wanted %q, got %q.", "bar", p["FOO"])
|
|
}
|
|
if p["BAZ"] != "qux=quux" {
|
|
t.Errorf("Wanted %q, got %q.", "qux=quux", p["BAZ"])
|
|
}
|
|
if _, exists := p["BAR"]; !exists {
|
|
t.Error("Missing a key with no value. Keys with empty values are also valid.")
|
|
}
|
|
if _, exists := p["INVALID"]; exists {
|
|
t.Error("Keys without an equal sign suffix are invalid.")
|
|
}
|
|
}
|