blob: 4a49cbe81fcc6ea1821638b43940255caee747c3 [file] [log] [blame]
package remote_api
import (
"testing"
)
func TestAppIDRE(t *testing.T) {
appID := "s~my-appid-539"
tests := []string{
"{rtok: 8306111115908860449, app_id: s~my-appid-539}\n",
"{rtok: 8306111115908860449, app_id: 's~my-appid-539'}\n",
`{rtok: 8306111115908860449, app_id: "s~my-appid-539"}`,
`{rtok: 8306111115908860449, "app_id":"s~my-appid-539"}`,
}
for _, v := range tests {
if g := appIDRE.FindStringSubmatch(v); g == nil || g[1] != appID {
t.Errorf("appIDRE.FindStringSubmatch(%s) got %q, want %q", v, g, appID)
}
}
}