2018-03-14 15:46:21 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseAppType(t *testing.T) {
|
|
|
|
check := func(input string, expectedState AppState, expectError bool) {
|
|
|
|
actualState, err := ParseAppState(input)
|
|
|
|
assert.Equalf(t, expectedState, actualState, "unexpected result from ParseAppState")
|
|
|
|
if expectError {
|
|
|
|
assert.NotNil(t, err, "error should not be nil")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-16 15:08:44 +00:00
|
|
|
check("active", AppStateForeground, false)
|
2018-03-14 15:46:21 +00:00
|
|
|
check("background", AppStateBackground, false)
|
|
|
|
check("inactive", AppStateInactive, false)
|
2018-03-16 15:08:44 +00:00
|
|
|
check(" acTIVE ", AppStateForeground, false)
|
2018-03-14 15:46:21 +00:00
|
|
|
check(" backGROUND ", AppStateBackground, false)
|
|
|
|
check(" INACTIVE ", AppStateInactive, false)
|
|
|
|
check("", AppStateInvalid, true)
|
|
|
|
check("back ground", AppStateInvalid, true)
|
|
|
|
check(" back ground ", AppStateInvalid, true)
|
|
|
|
check(" ", AppStateInvalid, true)
|
|
|
|
}
|