mirror of https://github.com/jlelse/GoBlog
parent
94dba7a9b8
commit
ffa4ba4ee0
@ -0,0 +1,78 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func Test_micropubQuery(t *testing.T) {
|
||||
|
||||
app := &goBlog{
|
||||
cfg: createDefaultTestConfig(t),
|
||||
}
|
||||
_ = app.initConfig()
|
||||
_ = app.initDatabase(false)
|
||||
defer app.db.close()
|
||||
app.initComponents(false)
|
||||
|
||||
// Create a test post with tags
|
||||
err := app.createPost(&post{
|
||||
Path: "/test/post",
|
||||
Content: "Test post",
|
||||
Parameters: map[string][]string{
|
||||
"tags": {"test", "test2"},
|
||||
},
|
||||
})
|
||||
require.NoError(t, err)
|
||||
|
||||
type testCase struct {
|
||||
query string
|
||||
want string
|
||||
wantStatus int
|
||||
}
|
||||
|
||||
testCases := []testCase{
|
||||
{
|
||||
query: "config",
|
||||
want: "{\"media-endpoint\":\"http://localhost:8080/micropub/media\"}\n",
|
||||
wantStatus: http.StatusOK,
|
||||
},
|
||||
{
|
||||
query: "source&url=http://localhost:8080/test/post",
|
||||
want: "{\"type\":[\"h-entry\"],\"properties\":{\"published\":[\"\"],\"updated\":[\"\"],\"post-status\":[\"published\"],\"visibility\":[\"public\"],\"category\":[\"test\",\"test2\"],\"content\":[\"---\\nblog: default\\npath: /test/post\\npriority: 0\\npublished: \\\"\\\"\\nsection: \\\"\\\"\\nstatus: published\\ntags:\\n - test\\n - test2\\nupdated: \\\"\\\"\\n---\\nTest post\"],\"url\":[\"http://localhost:8080/test/post\"],\"mp-slug\":[\"\"]}}\n",
|
||||
wantStatus: http.StatusOK,
|
||||
},
|
||||
{
|
||||
query: "source",
|
||||
want: "{\"items\":[{\"type\":[\"h-entry\"],\"properties\":{\"published\":[\"\"],\"updated\":[\"\"],\"post-status\":[\"published\"],\"visibility\":[\"public\"],\"category\":[\"test\",\"test2\"],\"content\":[\"---\\nblog: default\\npath: /test/post\\npriority: 0\\npublished: \\\"\\\"\\nsection: \\\"\\\"\\nstatus: published\\ntags:\\n - test\\n - test2\\nupdated: \\\"\\\"\\n---\\nTest post\"],\"url\":[\"http://localhost:8080/test/post\"],\"mp-slug\":[\"\"]}}]}\n",
|
||||
wantStatus: http.StatusOK,
|
||||
},
|
||||
{
|
||||
query: "category",
|
||||
want: "{\"categories\":[\"test\",\"test2\"]}\n",
|
||||
wantStatus: http.StatusOK,
|
||||
},
|
||||
{
|
||||
query: "somethingelse",
|
||||
wantStatus: http.StatusNotFound,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range testCases {
|
||||
req := httptest.NewRequest(http.MethodGet, "http://localhost:8080/micropub?q="+tc.query, nil)
|
||||
rec := httptest.NewRecorder()
|
||||
|
||||
app.serveMicropubQuery(rec, req)
|
||||
rec.Flush()
|
||||
|
||||
assert.Equal(t, tc.wantStatus, rec.Code)
|
||||
if tc.want != "" {
|
||||
assert.Equal(t, tc.want, rec.Body.String())
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue