mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-05 16:12:20 +00:00
Fix compiler recognition regexp for new format
This commit is contained in:
parent
d884768344
commit
13f9702a41
25
cmd/ursrv/compiler_test.go
Normal file
25
cmd/ursrv/compiler_test.go
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func TestCompilerRe(t *testing.T) {
|
||||||
|
tests := [][3]string{
|
||||||
|
{`syncthing v0.11.0 (xgcc (Ubuntu 4.9.3-0ubuntu4) 4.9.3 linux-amd64 default) niklas@Niklas-Netbook 2015-04-26 13:15:08 UTC`, "xgcc (Ubuntu 4.9.3-0ubuntu4) 4.9.3", "niklas@Niklas-Netbook"},
|
||||||
|
{`syncthing v0.12.0-rc5 "Beryllium Bedbug" (go1.4.2 linux-arm android) unknown-user@Felix-T420 2015-10-22 18:32:15 UTC`, "go1.4.2", "unknown-user@Felix-T420"},
|
||||||
|
{`syncthing v0.13.0-beta.0+39-ge267bf3 "Copper Cockroach" (go1.4.2 linux-amd64) portage@slevermann.de 2016-01-20 08:41:52 UTC`, "go1.4.2", "portage@slevermann.de"},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tc := range tests {
|
||||||
|
m := compilerRe.FindStringSubmatch(tc[0])
|
||||||
|
if len(m) != 3 {
|
||||||
|
t.Errorf("Regexp didn't match %q", tc[0])
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if m[1] != tc[1] {
|
||||||
|
t.Errorf("Compiler %q != %q", m[1], tc[1])
|
||||||
|
}
|
||||||
|
if m[2] != tc[2] {
|
||||||
|
t.Errorf("Builder %q != %q", m[2], tc[2])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -27,7 +27,7 @@ var (
|
|||||||
dbConn = getEnvDefault("UR_DB_URL", "postgres://user:password@localhost/ur?sslmode=disable")
|
dbConn = getEnvDefault("UR_DB_URL", "postgres://user:password@localhost/ur?sslmode=disable")
|
||||||
listenAddr = getEnvDefault("UR_LISTEN", "0.0.0.0:8443")
|
listenAddr = getEnvDefault("UR_LISTEN", "0.0.0.0:8443")
|
||||||
tpl *template.Template
|
tpl *template.Template
|
||||||
compilerRe = regexp.MustCompile(`\(([A-Za-z0-9()., -]+) [\w-]+ \w+\) ([\w@-]+)`)
|
compilerRe = regexp.MustCompile(`\(([A-Za-z0-9()., -]+) \w+-\w+(?:| android| default)\) ([\w@.-]+)`)
|
||||||
aggregateVersions = []string{"v0.7", "v0.8", "v0.9", "v0.10"}
|
aggregateVersions = []string{"v0.7", "v0.8", "v0.9", "v0.10"}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user