本文整理匯總了Golang中github.com/18F/cf-deck/helpers.Settings.InitSettings方法的典型用法代碼示例。如果您正苦於以下問題:Golang Settings.InitSettings方法的具體用法?Golang Settings.InitSettings怎麽用?Golang Settings.InitSettings使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/18F/cf-deck/helpers.Settings
的用法示例。
在下文中一共展示了Settings.InitSettings方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestInitSettings
func TestInitSettings(t *testing.T) {
s := helpers.Settings{}
for _, test := range initSettingsTests {
ret := s.InitSettings(test.envVars)
if (ret == nil) != test.returnValueNull {
t.Errorf("Test %s did not return correct value. Expected %t, Actual %t", test.testName, test.returnValueNull, (ret == nil))
}
}
}
示例2: InitApp
// InitApp takes in envars and sets up the router and settings that will be used for the unstarted server.
func InitApp(envVars helpers.EnvVars) (*web.Router, *helpers.Settings, error) {
// Initialize the settings.
settings := helpers.Settings{}
if err := settings.InitSettings(envVars); err != nil {
return nil, nil, err
}
// Initialize the router
router := InitRouter(&settings)
return router, &settings, nil
}
示例3: 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
}