2020-09-29 19:58:10 +03:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2020-11-08 14:46:12 +03:00
|
|
|
"github.com/stretchr/testify/assert"
|
2020-09-29 19:58:10 +03:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2020-11-08 14:46:12 +03:00
|
|
|
func TestCommon_ParseUserAgent(t *testing.T) {
|
2020-09-29 19:58:10 +03:00
|
|
|
tests := []struct {
|
|
|
|
in string
|
|
|
|
outOs string
|
|
|
|
outEditor string
|
|
|
|
outError error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"wakatime/13.0.7 (Linux-4.15.0-96-generic-x86_64-with-glibc2.4) Python3.8.0.final.0 GoLand/2019.3.4 GoLand-wakatime/11.0.1",
|
|
|
|
"Linux",
|
|
|
|
"GoLand",
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"wakatime/13.0.4 (Linux-5.4.64-x86_64-with-glibc2.2.5) Python3.7.6.final.0 emacs-wakatime/1.0.2",
|
|
|
|
"Linux",
|
|
|
|
"emacs",
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
errors.New(""),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"wakatime/13.0.7 Python3.8.0.final.0 GoLand/2019.3.4 GoLand-wakatime/11.0.1",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
errors.New(""),
|
|
|
|
},
|
2021-08-19 09:48:26 +03:00
|
|
|
{
|
|
|
|
"wakatime/v1.18.11 (linux-5.13.8-200.fc34.x86_64-x86_64) go1.16.7 emacs-wakatime/1.0.2",
|
|
|
|
"linux",
|
|
|
|
"emacs",
|
|
|
|
nil,
|
|
|
|
},
|
2022-01-12 23:23:36 +03:00
|
|
|
{
|
|
|
|
"wakatime/unset (linux-5.11.0-44-generic-x86_64) go1.16.13 emacs-wakatime/1.0.2",
|
|
|
|
"linux",
|
|
|
|
"emacs",
|
|
|
|
nil,
|
|
|
|
},
|
2023-03-16 23:02:28 +03:00
|
|
|
{
|
|
|
|
"Chrome/111.0.0.0 chrome-wakatime/3.0.6",
|
|
|
|
"",
|
|
|
|
"chrome",
|
|
|
|
nil,
|
|
|
|
},
|
2020-09-29 19:58:10 +03:00
|
|
|
}
|
|
|
|
|
2020-11-08 14:46:12 +03:00
|
|
|
for _, test := range tests {
|
|
|
|
os, editor, err := ParseUserAgent(test.in)
|
|
|
|
assert.True(t, checkErr(err, test.outError))
|
|
|
|
assert.Equal(t, test.outOs, os)
|
|
|
|
assert.Equal(t, test.outEditor, editor)
|
2020-09-29 19:58:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkErr(expected, actual error) bool {
|
|
|
|
return (expected == nil && actual == nil) || (expected != nil && actual != nil)
|
|
|
|
}
|