mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
package tests
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/md5"
|
|
"encoding/json"
|
|
"encoding/xml"
|
|
"fmt"
|
|
|
|
"github.com/cloudsonic/sonic-server/api/responses"
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func ShouldMatchXML(actual interface{}, expected ...interface{}) string {
|
|
xml, err := xml.Marshal(actual)
|
|
if err != nil {
|
|
return fmt.Sprintf("Malformed XML: %v", err)
|
|
}
|
|
return convey.ShouldEqual(string(xml), expected[0].(string))
|
|
|
|
}
|
|
|
|
func ShouldMatchJSON(actual interface{}, expected ...interface{}) string {
|
|
json, err := json.Marshal(actual)
|
|
if err != nil {
|
|
return fmt.Sprintf("Malformed JSON: %v", err)
|
|
}
|
|
s := UnindentJSON(json)
|
|
return convey.ShouldEqual(s, expected[0].(string))
|
|
}
|
|
|
|
func ShouldContainJSON(actual interface{}, expected ...interface{}) string {
|
|
a := UnindentJSON(actual.(*bytes.Buffer).Bytes())
|
|
|
|
return convey.ShouldContainSubstring(a, expected[0].(string))
|
|
}
|
|
|
|
func ShouldReceiveError(actual interface{}, expected ...interface{}) string {
|
|
v := responses.Subsonic{}
|
|
err := xml.Unmarshal(actual.(*bytes.Buffer).Bytes(), &v)
|
|
if err != nil {
|
|
return fmt.Sprintf("Malformed XML: %v", err)
|
|
}
|
|
|
|
return convey.ShouldEqual(v.Error.Code, expected[0].(int))
|
|
}
|
|
|
|
func ShouldMatchMD5(actual interface{}, expected ...interface{}) string {
|
|
a := fmt.Sprintf("%x", md5.Sum(actual.([]byte)))
|
|
return convey.ShouldEqual(a, expected[0].(string))
|
|
}
|
|
|
|
func ShouldBeAValid(actual interface{}, expected ...interface{}) string {
|
|
v := responses.Subsonic{}
|
|
err := json.Unmarshal(actual.(*bytes.Buffer).Bytes(), &v)
|
|
if err != nil {
|
|
return fmt.Sprintf("Malformed response: %v", err)
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
func UnindentJSON(j []byte) string {
|
|
var m = make(map[string]interface{})
|
|
json.Unmarshal(j, &m)
|
|
s, _ := json.Marshal(m)
|
|
return string(s)
|
|
}
|