challenge_test.go 635 B

123456789101112131415161718192021222324252627
  1. package model
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestDispatchState(t *testing.T) {
  7. convey.Convey("UpState", t, func() {
  8. dispatchState := int32(0x3a4b5c6d)
  9. role := int8(1)
  10. result, _ := DispatchState(dispatchState, role)
  11. convey.So(result, convey.ShouldEqual, uint32(0x6))
  12. })
  13. }
  14. func TestSetDispatchState(t *testing.T) {
  15. convey.Convey("UpState", t, func() {
  16. dispatchState := int32(0x3a4b5c6d)
  17. state := int8(0x1)
  18. role := int8(1)
  19. result, err := SetDispatchState(dispatchState, role, state)
  20. convey.ShouldBeNil(err)
  21. convey.So(result, convey.ShouldEqual, uint32(0x3a4b5c1d))
  22. })
  23. }