DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 59714f52080b7bf4512e3c61d239c1d11eeed0ff deck-builder/sdbapi/main_test.go -rw-r--r-- 592 bytes
59714f52Jonni Liljamo feat(sdbclient): new settings UI 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * This file is part of sdbapi
 * Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

package main

import (
	"net/http"
	"net/http/httptest"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestMiscInfo(t *testing.T) {
	r := createRouter()

	w := httptest.NewRecorder()
	req, _ := http.NewRequest("GET", "/api/info", nil)
	r.ServeHTTP(w, req)

	expected := "{\"info\":\"Deck Builder API\",\"ver\":\"0.0.1\"}"

	assert.Equal(t, http.StatusOK, w.Code)
	assert.Equal(t, expected, w.Body.String())
}