本文整理汇总了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
}