From: Mohamed Abukar Date: Thu, 24 Jun 2021 14:07:28 +0000 (+0000) Subject: More UTs added X-Git-Tag: v0.8.5~1 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=c2c130d71f20e44119f356f7ab4df92882f92c9d;p=ric-plt%2Fxapp-frame.git More UTs added Change-Id: Idae7b4de736ae2e941debb787c16e6c2ac77ff28 Signed-off-by: Mohamed Abukar --- diff --git a/pkg/xapp/xapp_test.go b/pkg/xapp/xapp_test.go index 2c4c4fe..8b2a952 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" @@ -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()