X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fxapp%2Fxapp_test.go;h=b9ea423e73df8f8f35d239e36ad1febbcc7d7f33;hb=40bc000e6cafe3a7eea32e4361268574050c12c4;hp=2c4c4fea9b0040c6ef02f1f2a2cd1f459ebcb438;hpb=dba83dfb6f135fb2f6987e55beec8552c6a8b74e;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/xapp_test.go b/pkg/xapp/xapp_test.go index 2c4c4fe..b9ea423 100755 --- a/pkg/xapp/xapp_test.go +++ b/pkg/xapp/xapp_test.go @@ -21,6 +21,7 @@ package xapp import ( "bytes" + "io/ioutil" "net/http" "net/http/httptest" "os" @@ -33,10 +34,10 @@ import ( "github.com/stretchr/testify/assert" ) -//var _ = func() bool { -// testing.Init() -// return true -//}() +var _ = func() bool { + testing.Init() + return true +}() type Consumer struct{} @@ -434,6 +435,16 @@ func TestappconfigHandler(t *testing.T) { executeRequest(req, handleFunc) } +func TestConfigChange(t *testing.T) { + Logger.Error("CASE: TestConfigChange: %s", os.Getenv("CFG_FILE")) + + input, err := ioutil.ReadFile(os.Getenv("CFG_FILE")) + assert.Equal(t, err, nil) + + err = ioutil.WriteFile(os.Getenv("CFG_FILE"), input, 0644) + assert.Equal(t, err, nil) +} + func TestRegisterXapp(t *testing.T) { Logger.Error("CASE: TestRegisterXapp") doRegister()