1
0
mirror of https://github.com/volatiletech/authboss.git synced 2024-11-28 08:58:38 +02:00
authboss/module_test.go
Aaron 670c6f3b9f Add more to context.
- Add test coverage to various modules.
2015-01-14 19:18:45 -08:00

65 lines
1.1 KiB
Go

package authboss
import (
"net/http"
"testing"
)
const testModName = "testmodule"
type testModule struct {
c *Config
s StorageOptions
r RouteTable
}
var testMod = &testModule{
r: RouteTable{
"/testroute": testHandler,
},
}
func testHandler(ctx *Context, w http.ResponseWriter, r *http.Request) {
w.Header().Set("testhandler", "test")
}
func (t *testModule) Initialize(c *Config) error {
t.c = c
return nil
}
func (t *testModule) Routes() RouteTable {
return t.r
}
func (t *testModule) Storage() StorageOptions {
return t.s
}
func TestRegister(t *testing.T) {
t.Parallel()
// RegisterModule called by TestMain.
if _, ok := modules["testmodule"]; !ok {
t.Error("Expected module to be saved.")
}
if !IsLoaded("testmodule") {
t.Error("Expected module to be loaded.")
}
}
func TestLoadedModules(t *testing.T) {
t.Parallel()
// RegisterModule called by TestMain.
loadedMods := LoadedModules()
if len(loadedMods) != 1 {
t.Error("Expected only a single module to be loaded.")
} else if loadedMods[0] != "testmodule" {
t.Error("Expected testmodule to be loaded.")
}
}