[RIC-248] RAN Health Check Request API - Implementation
[ric-plt/e2mgr.git] / E2Manager / mocks / nodeb_controller_mock.go
index 31499ef..8308fc1 100644 (file)
@@ -68,9 +68,22 @@ func (c *NodebControllerMock) UpdateGnb(writer http.ResponseWriter, r *http.Requ
        c.Called()
 }
 
-func (c *NodebControllerMock) AddEnb(writer http.ResponseWriter, r *http.Request) {
+func (c *NodebControllerMock) UpdateEnb(writer http.ResponseWriter, r *http.Request) {
        writer.Header().Set("Content-Type", "application/json")
        writer.WriteHeader(http.StatusOK)
+
+       c.Called()
+}
+
+func (c *NodebControllerMock) AddEnb(writer http.ResponseWriter, r *http.Request) {
+       writer.Header().Set("Content-Type", "application/json")
+       writer.WriteHeader(http.StatusCreated)
+       c.Called()
+}
+
+func (c *NodebControllerMock) DeleteEnb(writer http.ResponseWriter, r *http.Request) {
+       writer.Header().Set("Content-Type", "application/json")
+       writer.WriteHeader(http.StatusNoContent)
        c.Called()
 }
 
@@ -80,3 +93,10 @@ func (c *NodebControllerMock) SetGeneralConfiguration(writer http.ResponseWriter
 
        c.Called()
 }
+
+func (c *NodebControllerMock) HealthCheckRequest(writer http.ResponseWriter, r *http.Request) {
+       writer.Header().Set("Content-Type", "application/json")
+       writer.WriteHeader(http.StatusOK)
+
+       c.Called()
+}