package api_test import ( "testing" "encoding/xml" . "github.com/smartystreets/goconvey/convey" "github.com/deluan/gosonic/tests" ) func TestGetMusicFolders(t *testing.T) { tests.Init(t, false) _, w := Get(AddParams("/rest/getMusicFolders.view"), "TestGetMusicFolders") Convey("Subject: GetMusicFolders Endpoint", t, func() { Convey("Status code should be 200", func() { So(w.Code, ShouldEqual, 200) }) Convey("The response should include the default folder", func() { v := new(string) err := xml.Unmarshal(w.Body.Bytes(), &v) So(err, ShouldBeNil) So(w.Body.String(), ShouldContainSubstring, `musicFolder id="0" name="iTunes Library"`) }) }) }