mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2024-12-26 23:30:27 +08:00
34 lines
642 B
Go
34 lines
642 B
Go
package helpers
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSemverMatching(t *testing.T) {
|
|
m, err := MultistreamSemverMatcher("/testing/4.3.5")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
cases := map[string]bool{
|
|
"/testing/4.3.0": true,
|
|
"/testing/4.3.7": true,
|
|
"/testing/4.3.5": true,
|
|
"/testing/4.2.7": true,
|
|
"/testing/4.0.0": true,
|
|
"/testing/5.0.0": false,
|
|
"/cars/dogs/4.3.5": false,
|
|
"/foo/1.0.0": false,
|
|
"": false,
|
|
"dogs": false,
|
|
"/foo": false,
|
|
"/foo/1.1.1.1": false,
|
|
}
|
|
|
|
for p, ok := range cases {
|
|
if m(p) != ok {
|
|
t.Fatalf("expected %s to be %t", p, ok)
|
|
}
|
|
}
|
|
}
|