mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
9b963fc777
Merge in DNS/adguard-home from 2276-fix-lint-3 to master Updates #2276. Squashed commit of the following: commit 6ee94cc6ed2a9762b70ef395b58b496434244b80 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Dec 7 15:55:45 2020 +0300 all: fix lint and naming issues vol. 3
44 lines
996 B
Go
44 lines
996 B
Go
package home
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAuthGL(t *testing.T) {
|
|
dir := prepareTestDir()
|
|
defer func() { _ = os.RemoveAll(dir) }()
|
|
|
|
GLMode = true
|
|
glFilePrefix = dir + "/gl_token_"
|
|
|
|
tval := uint32(1)
|
|
data := make([]byte, 4)
|
|
if archIsLittleEndian() {
|
|
binary.LittleEndian.PutUint32(data, tval)
|
|
} else {
|
|
binary.BigEndian.PutUint32(data, tval)
|
|
}
|
|
assert.Nil(t, ioutil.WriteFile(glFilePrefix+"test", data, 0o644))
|
|
assert.False(t, glCheckToken("test"))
|
|
|
|
tval = uint32(time.Now().UTC().Unix() + 60)
|
|
data = make([]byte, 4)
|
|
if archIsLittleEndian() {
|
|
binary.LittleEndian.PutUint32(data, tval)
|
|
} else {
|
|
binary.BigEndian.PutUint32(data, tval)
|
|
}
|
|
assert.Nil(t, ioutil.WriteFile(glFilePrefix+"test", data, 0o644))
|
|
r, _ := http.NewRequest("GET", "http://localhost/", nil)
|
|
r.AddCookie(&http.Cookie{Name: glCookieName, Value: "test"})
|
|
assert.True(t, glProcessCookie(r))
|
|
GLMode = false
|
|
}
|