conf_test.go 411 B

123456789101112131415161718192021222324252627
  1. package conf
  2. import (
  3. "flag"
  4. "testing"
  5. )
  6. func TestInit(t *testing.T) {
  7. flag.Set("conf", "../cmd/spy-service-test.toml")
  8. flag.Parse()
  9. var err error
  10. if err = Init(); err != nil {
  11. t.Fatal(err)
  12. }
  13. if Conf == nil {
  14. t.Fatal()
  15. }
  16. if Conf.Property.Punishment == nil {
  17. t.Fatal()
  18. }
  19. if Conf.Property.Score == nil {
  20. t.Fatal()
  21. }
  22. t.Log(Conf.Property.AutoBlockSwitch)
  23. t.Log(Conf.Property.White.Tels)
  24. }