Basic ooni unittest

This commit is contained in:
Arturo Filastò 2018-09-17 11:52:42 +02:00
parent bd6a5acf5b
commit 4f6c8aa18b

27
ooni_test.go Normal file
View File

@ -0,0 +1,27 @@
package ooni
import (
"io/ioutil"
"os"
"path"
"testing"
)
func TestInit(t *testing.T) {
ooniHome, err := ioutil.TempDir("", "oonihome")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(ooniHome)
ctx := NewContext("", ooniHome)
if err := ctx.Init(); err != nil {
t.Error(err)
t.Fatal("failed to init the context")
}
configPath := path.Join(ooniHome, "config.json")
if _, err := os.Stat(configPath); os.IsNotExist(err) {
t.Fatal("config file was not created")
}
}