2019-05-13 17:38:53 +02:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2022-09-02 21:18:23 +02:00
|
|
|
package integration
|
2019-05-13 17:38:53 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2022-09-02 21:18:23 +02:00
|
|
|
"code.gitea.io/gitea/tests"
|
2022-09-05 08:04:18 +02:00
|
|
|
|
2019-05-13 17:38:53 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCORSNotSet(t *testing.T) {
|
2022-09-02 21:18:23 +02:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2019-05-13 17:38:53 +02:00
|
|
|
req := NewRequestf(t, "GET", "/api/v1/version")
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.Equal(t, resp.Code, http.StatusOK)
|
|
|
|
corsHeader := resp.Header().Get("Access-Control-Allow-Origin")
|
|
|
|
assert.Equal(t, corsHeader, "", "Access-Control-Allow-Origin: generated header should match") // header not set
|
|
|
|
}
|