mirror of
https://github.com/syncthing/syncthing.git
synced 2024-11-16 18:41:59 -07:00
28 lines
538 B
Go
28 lines
538 B
Go
|
package main
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
var testcases = []struct {
|
||
|
a, b string
|
||
|
r int
|
||
|
}{
|
||
|
{"0.1.2", "0.1.2", 0},
|
||
|
{"0.1.3", "0.1.2", 1},
|
||
|
{"0.1.1", "0.1.2", -1},
|
||
|
{"0.3.0", "0.1.2", 1},
|
||
|
{"0.0.9", "0.1.2", -1},
|
||
|
{"1.1.2", "0.1.2", 1},
|
||
|
{"0.1.2", "1.1.2", -1},
|
||
|
{"0.1.10", "0.1.9", 1},
|
||
|
{"0.10.0", "0.2.0", 1},
|
||
|
{"30.10.0", "4.9.0", 1},
|
||
|
}
|
||
|
|
||
|
func TestCompareVersions(t *testing.T) {
|
||
|
for _, tc := range testcases {
|
||
|
if r := compareVersions(tc.a, tc.b); r != tc.r {
|
||
|
t.Errorf("compareVersions(%q, %q): %d != %d", tc.a, tc.b, r, tc.r)
|
||
|
}
|
||
|
}
|
||
|
}
|