本文整理匯總了Golang中github.com/18F/cf-deck/helpers.Settings.Sessions方法的典型用法代碼示例。如果您正苦於以下問題:Golang Settings.Sessions方法的具體用法?Golang Settings.Sessions怎麽用?Golang Settings.Sessions使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/18F/cf-deck/helpers.Settings
的用法示例。
在下文中一共展示了Settings.Sessions方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestOAuth
func TestOAuth(t *testing.T) {
mockSettings := helpers.Settings{}
mockSettings.TokenContext = context.TODO()
for _, test := range oauthTests {
// Initialize a new session store.
store := MockSessionStore{}
store.ResetSessionData(test.SessionData, "")
mockSettings.Sessions = store
// Setup a test route on the API router (which is guarded by OAuth)
response, request := NewTestRequest("GET", "/v2/test", nil)
router := controllers.InitRouter(&mockSettings)
secureRouter := router.Subrouter(controllers.SecureContext{}, "/")
apiRouter := secureRouter.Subrouter(controllers.APIContext{}, "/v2")
apiRouter.Middleware((*controllers.APIContext).OAuth)
apiRouter.Get("/test", func(c *controllers.APIContext, rw web.ResponseWriter, r *web.Request) {
fmt.Fprintf(rw, "test")
})
// Make the request and check.
router.ServeHTTP(response, request)
if strings.TrimSpace(response.Body.String()) != test.ExpectedResponse {
t.Errorf("Test %s did not meet expected value. Expected %s. Found %s.\n", test.TestName, test.ExpectedResponse, response.Body.String())
}
}
}
示例2: CreateRouterWithMockSession
// CreateRouterWithMockSession will create a settings with the appropriate envVars and load the mock session with the session data.
func CreateRouterWithMockSession(sessionData map[string]interface{}, envVars helpers.EnvVars) (*web.Router, *MockSessionStore) {
// Initialize settings.
settings := helpers.Settings{}
settings.InitSettings(envVars)
// Initialize a new session store.
store := MockSessionStore{}
store.ResetSessionData(sessionData, "")
// Override the session store.
settings.Sessions = store
// Create the router.
router := controllers.InitRouter(&settings)
return router, &store
}
示例3: TestGetValidToken
func TestGetValidToken(t *testing.T) {
mockRequest, _ := http.NewRequest("GET", "", nil)
mockSettings := helpers.Settings{}
mockSettings.TokenContext = context.TODO()
for _, test := range getValidTokenTests {
// Initialize a new session store.
store := testhelpers.MockSessionStore{}
store.ResetSessionData(test.sessionData, test.sessionName)
mockSettings.Sessions = store
value := helpers.GetValidToken(mockRequest, &mockSettings)
if (value == nil) == test.returnValueNull {
} else {
t.Errorf("Test %s did not meet expected value. Expected: %t. Actual: %t\n", test.testName, test.returnValueNull, (value == nil))
}
}
}