mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 10:58:29 -07:00
138dfaa85b
Merge in DNS/adguard-home from imp-test to master Squashed commit of the following: commit 0ef7812e32b74647b43bb1d69b569e9b102e92b3 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Apr 22 14:12:00 2021 +0300 home: rm unnecessary func
37 lines
851 B
Go
37 lines
851 B
Go
package home
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestAuthGL(t *testing.T) {
|
|
dir := t.TempDir()
|
|
|
|
GLMode = true
|
|
t.Cleanup(func() {
|
|
GLMode = false
|
|
})
|
|
glFilePrefix = dir + "/gl_token_"
|
|
|
|
data := make([]byte, 4)
|
|
aghos.NativeEndian.PutUint32(data, 1)
|
|
|
|
require.Nil(t, ioutil.WriteFile(glFilePrefix+"test", data, 0o644))
|
|
assert.False(t, glCheckToken("test"))
|
|
|
|
data = make([]byte, 4)
|
|
aghos.NativeEndian.PutUint32(data, uint32(time.Now().UTC().Unix()+60))
|
|
|
|
require.Nil(t, ioutil.WriteFile(glFilePrefix+"test", data, 0o644))
|
|
r, _ := http.NewRequest(http.MethodGet, "http://localhost/", nil)
|
|
r.AddCookie(&http.Cookie{Name: glCookieName, Value: "test"})
|
|
assert.True(t, glProcessCookie(r))
|
|
}
|