mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
566 lines
20 KiB
Go
566 lines
20 KiB
Go
/** Signal package, testing.
|
|
*
|
|
* @author Sonja Happ <sonja.happ@eonerc.rwth-aachen.de>
|
|
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license GNU General Public License (version 3)
|
|
*
|
|
* VILLASweb-backend-go
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************************/
|
|
package signal
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/configuration"
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/database"
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/helper"
|
|
component_configuration "git.rwth-aachen.de/acs/public/villas/web-backend-go/routes/component-configuration"
|
|
infrastructure_component "git.rwth-aachen.de/acs/public/villas/web-backend-go/routes/infrastructure-component"
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/routes/scenario"
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/routes/user"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/jinzhu/gorm/dialects/postgres"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var router *gin.Engine
|
|
|
|
type SignalRequest struct {
|
|
Name string `json:"name,omitempty"`
|
|
Unit string `json:"unit,omitempty"`
|
|
Index uint `json:"index,omitempty"`
|
|
Direction string `json:"direction,omitempty"`
|
|
ScalingFactor float32 `json:"scalingFactor,omitempty"`
|
|
ConfigID uint `json:"configID,omitempty"`
|
|
}
|
|
|
|
type ConfigRequest struct {
|
|
Name string `json:"name,omitempty"`
|
|
ScenarioID uint `json:"scenarioID,omitempty"`
|
|
ICID uint `json:"icID,omitempty"`
|
|
StartParameters postgres.Jsonb `json:"startParameters,omitempty"`
|
|
}
|
|
|
|
type ICRequest struct {
|
|
UUID string `json:"uuid,omitempty"`
|
|
WebsocketURL string `json:"websocketurl,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Category string `json:"category,omitempty"`
|
|
State string `json:"state,omitempty"`
|
|
Location string `json:"location,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
StartParameterScheme postgres.Jsonb `json:"startparameterscheme,omitempty"`
|
|
ManagedExternally *bool `json:"managedexternally,omitempty"`
|
|
}
|
|
|
|
type ScenarioRequest struct {
|
|
Name string `json:"name,omitempty"`
|
|
Running bool `json:"running,omitempty"`
|
|
StartParameters postgres.Jsonb `json:"startParameters,omitempty"`
|
|
}
|
|
|
|
func addScenarioAndICAndConfig() (scenarioID uint, ICID uint, configID uint) {
|
|
|
|
// authenticate as admin
|
|
token, _ := helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.AdminCredentials)
|
|
|
|
// POST $newICA
|
|
newICA := ICRequest{
|
|
UUID: helper.ICA.UUID,
|
|
WebsocketURL: helper.ICA.WebsocketURL,
|
|
Type: helper.ICA.Type,
|
|
Name: helper.ICA.Name,
|
|
Category: helper.ICA.Category,
|
|
State: helper.ICA.State,
|
|
Location: helper.ICA.Location,
|
|
Description: helper.ICA.Description,
|
|
StartParameterScheme: helper.ICA.StartParameterScheme,
|
|
ManagedExternally: &helper.ICA.ManagedExternally,
|
|
}
|
|
_, resp, _ := helper.TestEndpoint(router, token,
|
|
"/api/ic", "POST", helper.KeyModels{"ic": newICA})
|
|
|
|
// Read newIC's ID from the response
|
|
newICID, _ := helper.GetResponseID(resp)
|
|
|
|
// authenticate as normal user
|
|
token, _ = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
|
|
// POST $newScenario
|
|
newScenario := ScenarioRequest{
|
|
Name: helper.ScenarioA.Name,
|
|
Running: helper.ScenarioA.Running,
|
|
StartParameters: helper.ScenarioA.StartParameters,
|
|
}
|
|
_, resp, _ = helper.TestEndpoint(router, token,
|
|
"/api/scenarios", "POST", helper.KeyModels{"scenario": newScenario})
|
|
|
|
// Read newScenario's ID from the response
|
|
newScenarioID, _ := helper.GetResponseID(resp)
|
|
|
|
// test POST newConfig
|
|
newConfig := ConfigRequest{
|
|
Name: helper.ConfigA.Name,
|
|
ScenarioID: uint(newScenarioID),
|
|
ICID: uint(newICID),
|
|
StartParameters: helper.ConfigA.StartParameters,
|
|
}
|
|
_, resp, _ = helper.TestEndpoint(router, token,
|
|
"/api/configs", "POST", helper.KeyModels{"config": newConfig})
|
|
|
|
// Read newConfig's ID from the response
|
|
newConfigID, _ := helper.GetResponseID(resp)
|
|
|
|
// add the guest user to the new scenario
|
|
_, resp, _ = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/scenarios/%v/user?username=User_C", newScenarioID), "PUT", nil)
|
|
|
|
return uint(newScenarioID), uint(newICID), uint(newConfigID)
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
err := configuration.InitConfig()
|
|
if err != nil {
|
|
panic(m)
|
|
}
|
|
|
|
err = database.InitDB(configuration.GlobalConfig)
|
|
if err != nil {
|
|
panic(m)
|
|
}
|
|
defer database.DBpool.Close()
|
|
|
|
router = gin.Default()
|
|
api := router.Group("/api")
|
|
|
|
user.RegisterAuthenticate(api.Group("/authenticate"))
|
|
api.Use(user.Authentication(true))
|
|
// component-configuration endpoints required here to first add a component config to the DB
|
|
// that can be associated with a new signal
|
|
component_configuration.RegisterComponentConfigurationEndpoints(api.Group("/configs"))
|
|
// scenario endpoints required here to first add a scenario to the DB
|
|
// that can be associated with a new component config
|
|
scenario.RegisterScenarioEndpoints(api.Group("/scenarios"))
|
|
// IC endpoints required here to first add a IC to the DB
|
|
// that can be associated with a new component config
|
|
infrastructure_component.RegisterICEndpoints(api.Group("/ic"))
|
|
RegisterSignalEndpoints(api.Group("/signals"))
|
|
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestAddSignal(t *testing.T) {
|
|
database.DropTables()
|
|
database.MigrateModels()
|
|
assert.NoError(t, helper.DBAddAdminAndUserAndGuest())
|
|
|
|
// prepare the content of the DB for testing
|
|
// by adding a scenario and a IC to the DB
|
|
// using the respective endpoints of the API
|
|
_, _, configID := addScenarioAndICAndConfig()
|
|
|
|
// authenticate as normal user
|
|
token, err := helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
newSignal := SignalRequest{
|
|
Name: helper.InSignalA.Name,
|
|
Unit: helper.InSignalA.Unit,
|
|
Direction: helper.InSignalA.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
|
|
// authenticate as normal userB who has no access to new scenario
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserBCredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// try to POST to component config without access
|
|
// should result in unprocessable entity
|
|
code, resp, err := helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
|
|
// authenticate as normal user
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// try to POST a signal with non JSON body
|
|
// should result in a bad request
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", "this is not a JSON")
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 400, code, "Response body: \n%v\n", resp)
|
|
|
|
// test POST signals/ $newSignal
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Compare POST's response with the newSignal
|
|
err = helper.CompareResponse(resp, helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
|
|
// Read newSignal's ID from the response
|
|
newSignalID, err := helper.GetResponseID(resp)
|
|
assert.NoError(t, err)
|
|
|
|
// Get the newSignal
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Compare GET's response with the newSSignal
|
|
err = helper.CompareResponse(resp, helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
|
|
// try to POST a malformed signal
|
|
// Required fields are missing
|
|
malformedNewSignal := SignalRequest{
|
|
Name: "ThisIsAMalformedRequest",
|
|
}
|
|
// this should NOT work and return a unprocessable entity 442 status code
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": malformedNewSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
|
|
// authenticate as normal userB who has no access to new scenario
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserBCredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// Try to Get the newSignal as user B
|
|
// should result in unprocessable entity
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
}
|
|
|
|
func TestUpdateSignal(t *testing.T) {
|
|
database.DropTables()
|
|
database.MigrateModels()
|
|
assert.NoError(t, helper.DBAddAdminAndUserAndGuest())
|
|
|
|
// prepare the content of the DB for testing
|
|
// by adding a scenario and a IC to the DB
|
|
// using the respective endpoints of the API
|
|
_, _, configID := addScenarioAndICAndConfig()
|
|
|
|
// authenticate as normal user
|
|
token, err := helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// test POST signals/ $newSignal
|
|
newSignal := SignalRequest{
|
|
Name: helper.InSignalA.Name,
|
|
Unit: helper.InSignalA.Unit,
|
|
Direction: helper.InSignalA.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err := helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Read newSignal's ID from the response
|
|
newSignalID, err := helper.GetResponseID(resp)
|
|
assert.NoError(t, err)
|
|
|
|
updatedSignal := SignalRequest{
|
|
Name: helper.InSignalB.Name,
|
|
Unit: helper.InSignalB.Unit,
|
|
Index: 1,
|
|
}
|
|
|
|
// authenticate as normal userB who has no access to new scenario
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserBCredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// try to PUT signal without access
|
|
// should result in unprocessable entity
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "PUT", helper.KeyModels{"signal": updatedSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
|
|
// authenticate as guest user
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.GuestCredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// try to update signal as guest who has access to scenario
|
|
// should result in unprocessable entity
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "PUT", helper.KeyModels{"signal": updatedSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
|
|
// authenticate as normal user
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// try to PUT with non JSON body
|
|
// should result in bad request
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "PUT", "This is not JSON")
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 400, code, "Response body: \n%v\n", resp)
|
|
|
|
// test PUT
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "PUT", helper.KeyModels{"signal": updatedSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Compare PUT's response with the updatedSignal
|
|
err = helper.CompareResponse(resp, helper.KeyModels{"signal": updatedSignal})
|
|
assert.NoError(t, err)
|
|
|
|
// Get the updatedSignal
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Compare GET's response with the updatedSignal
|
|
err = helper.CompareResponse(resp, helper.KeyModels{"signal": updatedSignal})
|
|
assert.NoError(t, err)
|
|
|
|
// try to update a signal that does not exist (should return not found 404 status code)
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID+1), "PUT", helper.KeyModels{"signal": updatedSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 404, code, "Response body: \n%v\n", resp)
|
|
|
|
}
|
|
|
|
func TestDeleteSignal(t *testing.T) {
|
|
database.DropTables()
|
|
database.MigrateModels()
|
|
assert.NoError(t, helper.DBAddAdminAndUserAndGuest())
|
|
|
|
// prepare the content of the DB for testing
|
|
// by adding a scenario and a IC to the DB
|
|
// using the respective endpoints of the API
|
|
_, _, configID := addScenarioAndICAndConfig()
|
|
|
|
// authenticate as normal user
|
|
token, err := helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// test POST signals/ $newSignal
|
|
newSignal := SignalRequest{
|
|
Name: helper.InSignalA.Name,
|
|
Unit: helper.InSignalA.Unit,
|
|
Direction: helper.InSignalA.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err := helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Read newSignal's ID from the response
|
|
newSignalID, err := helper.GetResponseID(resp)
|
|
assert.NoError(t, err)
|
|
|
|
// authenticate as normal userB who has no access to new scenario
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserBCredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// Try to DELETE signal with no access
|
|
// should result in unprocessable entity
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "DELETE", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
|
|
// authenticate as normal user
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// Count the number of all the input signals returned for component config
|
|
initialNumber, err := helper.LengthOfResponse(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=in", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
|
|
// add an output signal to make sure that counting of input signals works
|
|
newSignalout := SignalRequest{
|
|
Name: helper.OutSignalA.Name,
|
|
Unit: helper.OutSignalA.Unit,
|
|
Direction: helper.OutSignalA.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignalout})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Read newSignalout's ID from the response
|
|
newSignaloutID, err := helper.GetResponseID(resp)
|
|
assert.NoError(t, err)
|
|
|
|
// Delete the added newSignal
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignalID), "DELETE", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Compare DELETE's response with the newSignal
|
|
err = helper.CompareResponse(resp, helper.KeyModels{"signal": newSignal})
|
|
assert.NoError(t, err)
|
|
|
|
// Again count the number of all the input signals returned for component config
|
|
finalNumber, err := helper.LengthOfResponse(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=in", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, initialNumber-1, finalNumber)
|
|
|
|
// Delete the output signal
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals/%v", newSignaloutID), "DELETE", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
}
|
|
|
|
func TestGetAllInputSignalsOfConfig(t *testing.T) {
|
|
database.DropTables()
|
|
database.MigrateModels()
|
|
assert.NoError(t, helper.DBAddAdminAndUserAndGuest())
|
|
|
|
// prepare the content of the DB for testing
|
|
// by adding a scenario and a IC to the DB
|
|
// using the respective endpoints of the API
|
|
_, _, configID := addScenarioAndICAndConfig()
|
|
|
|
// authenticate as normal user
|
|
token, err := helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserACredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// Count the number of all the input signals returned for component config
|
|
initialNumber, err := helper.LengthOfResponse(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=in", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
|
|
// test POST signals/ $newSignal
|
|
newSignalA := SignalRequest{
|
|
Name: helper.InSignalA.Name,
|
|
Unit: helper.InSignalA.Unit,
|
|
Direction: helper.InSignalA.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err := helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignalA})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// add a second input signal
|
|
newSignalB := SignalRequest{
|
|
Name: helper.InSignalB.Name,
|
|
Unit: helper.InSignalB.Unit,
|
|
Direction: helper.InSignalB.Direction,
|
|
Index: 2,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignalB})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// add an output signal
|
|
newSignalAout := SignalRequest{
|
|
Name: helper.OutSignalA.Name,
|
|
Unit: helper.OutSignalA.Unit,
|
|
Direction: helper.OutSignalA.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignalAout})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// add a second output signal
|
|
newSignalBout := SignalRequest{
|
|
Name: helper.OutSignalB.Name,
|
|
Unit: helper.OutSignalB.Unit,
|
|
Direction: helper.OutSignalB.Direction,
|
|
Index: 1,
|
|
ConfigID: configID,
|
|
}
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
"/api/signals", "POST", helper.KeyModels{"signal": newSignalBout})
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 200, code, "Response body: \n%v\n", resp)
|
|
|
|
// Again count the number of all the input signals returned for component config
|
|
finalNumber, err := helper.LengthOfResponse(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=in", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, initialNumber+2, finalNumber)
|
|
|
|
// Get the number of output signals
|
|
outputNumber, err := helper.LengthOfResponse(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=out", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, initialNumber+2, outputNumber)
|
|
|
|
// Try to get all signals for non-existing direction
|
|
// should result in bad request
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=thisiswrong", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 400, code, "Response body: \n%v\n", resp)
|
|
|
|
// authenticate as normal userB who has no access to new scenario
|
|
token, err = helper.AuthenticateForTest(router,
|
|
"/api/authenticate", "POST", helper.UserBCredentials)
|
|
assert.NoError(t, err)
|
|
|
|
// try to get all input signals
|
|
// should result in unprocessable entity
|
|
code, resp, err = helper.TestEndpoint(router, token,
|
|
fmt.Sprintf("/api/signals?configID=%v&direction=in", configID), "GET", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equalf(t, 422, code, "Response body: \n%v\n", resp)
|
|
|
|
}
|