serializer.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package assertions
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/smartystreets/assertions/internal/go-render/render"
  6. )
  7. type Serializer interface {
  8. serialize(expected, actual interface{}, message string) string
  9. serializeDetailed(expected, actual interface{}, message string) string
  10. }
  11. type failureSerializer struct{}
  12. func (self *failureSerializer) serializeDetailed(expected, actual interface{}, message string) string {
  13. view := FailureView{
  14. Message: message,
  15. Expected: render.Render(expected),
  16. Actual: render.Render(actual),
  17. }
  18. serialized, _ := json.Marshal(view)
  19. return string(serialized)
  20. }
  21. func (self *failureSerializer) serialize(expected, actual interface{}, message string) string {
  22. view := FailureView{
  23. Message: message,
  24. Expected: fmt.Sprintf("%+v", expected),
  25. Actual: fmt.Sprintf("%+v", actual),
  26. }
  27. serialized, _ := json.Marshal(view)
  28. return string(serialized)
  29. }
  30. func newSerializer() *failureSerializer {
  31. return &failureSerializer{}
  32. }
  33. ///////////////////////////////////////////////////////////////////////////////
  34. // This struct is also declared in github.com/smartystreets/goconvey/convey/reporting.
  35. // The json struct tags should be equal in both declarations.
  36. type FailureView struct {
  37. Message string `json:"Message"`
  38. Expected string `json:"Expected"`
  39. Actual string `json:"Actual"`
  40. }
  41. ///////////////////////////////////////////////////////
  42. // noopSerializer just gives back the original message. This is useful when we are using
  43. // the assertions from a context other than the GoConvey Web UI, that requires the JSON
  44. // structure provided by the failureSerializer.
  45. type noopSerializer struct{}
  46. func (self *noopSerializer) serialize(expected, actual interface{}, message string) string {
  47. return message
  48. }
  49. func (self *noopSerializer) serializeDetailed(expected, actual interface{}, message string) string {
  50. return message
  51. }