/
githubmirror
/
beego
Обзор
Документация
Войти
/
githubmirror
/
beego
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
server/web/mock/session_test.go
48 строк
1 KB
loyalsoldier
Fix lint and format code in server dir
07 июн 2021, 14:03
Не верифицирован
07 июн 2021, 14:03
1023f83
Код
Авторство
О чём код?
// Copyright 2021 beego // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package mock import ( "bytes" "net/http" "testing" "github.com/stretchr/testify/assert" "github.com/beego/beego/v2/server/web" ) func TestSessionProvider(t *testing.T) { sp := NewSessionProvider("file") assert.NotNil(t, sp) req, err := http.NewRequest("GET", "http://localhost:8080/hello?name=tom", bytes.NewReader([]byte{})) assert.Nil(t, err) ctx, resp := NewMockContext(req) ctrl := &TestController{ Controller: web.Controller{ Ctx: ctx, }, } ctrl.HelloSession() result := resp.BodyToString() assert.Equal(t, "set", result) resp.Reset() ctrl.HelloSessionName() result = resp.BodyToString() assert.Equal(t, "Tom", result) }