mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-20 14:01:50 +03:00
47dfa44cf6
Squashed commit of the following: commit2611fd5781
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Nov 1 16:29:06 2024 +0300 dnsforward: imp test commit5efcfda937
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Nov 1 15:54:18 2024 +0300 rulelist: imp docs, tests commit7a759c4699
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Nov 1 14:36:08 2024 +0300 all: add filtering storage; upd golibs
38 lines
942 B
Go
38 lines
942 B
Go
package websvc_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/url"
|
|
"runtime"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/websvc"
|
|
"github.com/AdguardTeam/golibs/netutil/urlutil"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestService_handleGetV1SystemInfo(t *testing.T) {
|
|
confMgr := newConfigManager()
|
|
_, addr := newTestServer(t, confMgr)
|
|
u := &url.URL{
|
|
Scheme: urlutil.SchemeHTTP,
|
|
Host: addr.String(),
|
|
Path: websvc.PathV1SystemInfo,
|
|
}
|
|
|
|
body := httpGet(t, u, http.StatusOK)
|
|
resp := &websvc.RespGetV1SystemInfo{}
|
|
err := json.Unmarshal(body, resp)
|
|
require.NoError(t, err)
|
|
|
|
// TODO(a.garipov): Consider making version.Channel and version.Version
|
|
// testable and test these better.
|
|
assert.NotEmpty(t, resp.Channel)
|
|
|
|
assert.Equal(t, resp.Arch, runtime.GOARCH)
|
|
assert.Equal(t, resp.OS, runtime.GOOS)
|
|
assert.Equal(t, testStart, time.Time(resp.Start))
|
|
}
|