package misc import ( "io/ioutil" "net/http" "net/http/httptest" "net/url" "strings" "testing" "code.gitea.io/gitea/modules/context" "code.gitea.io/gitea/modules/setting" api "code.gitea.io/gitea/modules/structs" "code.gitea.io/gitea/modules/util" "gitea.com/macaron/inject" "gitea.com/macaron/macaron" "github.com/stretchr/testify/assert" ) const AppURL = "http://localhost:3000/" const Repo = "gogits/gogs" const AppSubURL = AppURL + Repo + "/" func createContext(req *http.Request) (*macaron.Context, *httptest.ResponseRecorder) { resp := httptest.NewRecorder() c := &macaron.Context{ Injector: inject.New(), Req: macaron.Request{Request: req}, Resp: macaron.NewResponseWriter(req.Method, resp), Render: &macaron.DummyRender{ResponseWriter: resp}, Data: make(map[string]interface{}), } c.Map(c) c.Map(req) return c, resp } func wrap(ctx *macaron.Context) *context.APIContext { return &context.APIContext{ Context: &context.Context{ Context: ctx, }, } } func TestAPI_RenderGFM(t *testing.T) { setting.AppURL = AppURL options := api.MarkdownOption{ Mode: "gfm", Text: "", Context: Repo, Wiki: true, } requrl, _ := url.Parse(util.URLJoin(AppURL, "api", "v1", "markdown")) req := &http.Request{ Method: "POST", URL: requrl, } m, resp := createContext(req) ctx := wrap(m) testCases := []string{ // dear imgui wiki markdown extract: special wiki syntax `Wiki! Enjoy :) - [[Links, Language bindings, Engine bindings|Links]] - [[Tips]] - Bezier widget (by @r-lyeh) https://github.com/ocornut/imgui/issues/786`, // rendered `

Wiki! Enjoy :)

`, // wine-staging wiki home extract: special wiki syntax, images `## What is Wine Staging? **Wine Staging** on website [wine-staging.com](http://wine-staging.com). ## Quick Links Here are some links to the most important topics. You can find the full list of pages at the sidebar. [[Configuration]] [[images/icon-bug.png]] `, // rendered `

What is Wine Staging?

Wine Staging on website wine-staging.com.

Here are some links to the most important topics. You can find the full list of pages at the sidebar.

Configuration images/icon-bug.png

`, // Guard wiki sidebar: special syntax `[[Guardfile-DSL / Configuring-Guard|Guardfile-DSL---Configuring-Guard]]`, // rendered `

Guardfile-DSL / Configuring-Guard

`, // special syntax `[[Name|Link]]`, // rendered `

Name

`, // empty ``, // rendered ``, } for i := 0; i < len(testCases); i += 2 { options.Text = testCases[i] Markdown(ctx, options) assert.Equal(t, testCases[i+1], resp.Body.String()) resp.Body.Reset() } } var simpleCases = []string{ // Guard wiki sidebar: special syntax `[[Guardfile-DSL / Configuring-Guard|Guardfile-DSL---Configuring-Guard]]`, // rendered `

[[Guardfile-DSL / Configuring-Guard|Guardfile-DSL---Configuring-Guard]]

`, // special syntax `[[Name|Link]]`, // rendered `

[[Name|Link]]

`, // empty ``, // rendered ``, } func TestAPI_RenderSimple(t *testing.T) { setting.AppURL = AppURL options := api.MarkdownOption{ Mode: "markdown", Text: "", Context: Repo, } requrl, _ := url.Parse(util.URLJoin(AppURL, "api", "v1", "markdown")) req := &http.Request{ Method: "POST", URL: requrl, } m, resp := createContext(req) ctx := wrap(m) for i := 0; i < len(simpleCases); i += 2 { options.Text = simpleCases[i] Markdown(ctx, options) assert.Equal(t, simpleCases[i+1], resp.Body.String()) resp.Body.Reset() } } func TestAPI_RenderRaw(t *testing.T) { setting.AppURL = AppURL requrl, _ := url.Parse(util.URLJoin(AppURL, "api", "v1", "markdown")) req := &http.Request{ Method: "POST", URL: requrl, } m, resp := createContext(req) ctx := wrap(m) for i := 0; i < len(simpleCases); i += 2 { ctx.Req.Request.Body = ioutil.NopCloser(strings.NewReader(simpleCases[i])) MarkdownRaw(ctx) assert.Equal(t, simpleCases[i+1], resp.Body.String()) resp.Body.Reset() } }