diff options
Diffstat (limited to 'tests/integration/version_test.go')
-rw-r--r-- | tests/integration/version_test.go | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/integration/version_test.go b/tests/integration/version_test.go new file mode 100644 index 0000000000..83be62d3f4 --- /dev/null +++ b/tests/integration/version_test.go @@ -0,0 +1,28 @@ +// Copyright 2017 The Gitea Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package integration + +import ( + "net/http" + "testing" + + "code.gitea.io/gitea/modules/setting" + "code.gitea.io/gitea/modules/structs" + "code.gitea.io/gitea/tests" + + "github.com/stretchr/testify/assert" +) + +func TestVersion(t *testing.T) { + defer tests.PrepareTestEnv(t)() + + setting.AppVer = "test-version-1" + req := NewRequest(t, "GET", "/api/v1/version") + resp := MakeRequest(t, req, http.StatusOK) + + var version structs.ServerVersion + DecodeJSON(t, resp, &version) + assert.Equal(t, setting.AppVer, version.Version) +} |