-
Notifications
You must be signed in to change notification settings - Fork 2
/
integration_test.go
53 lines (44 loc) · 1.64 KB
/
integration_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// This file is part of the eliona project.
// Copyright © 2022 LEICOM iTEC AG. All Rights Reserved.
// ______ _ _
// | ____| (_)
// | |__ | |_ ___ _ __ __ _
// | __| | | |/ _ \| '_ \ / _` |
// | |____| | | (_) | | | | (_| |
// |______|_|_|\___/|_| |_|\__,_|
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
// BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package main
import (
"github.com/eliona-smart-building-assistant/app-integration-tests/app"
"github.com/eliona-smart-building-assistant/app-integration-tests/assert"
"github.com/eliona-smart-building-assistant/app-integration-tests/test"
"testing"
)
func TestApp(t *testing.T) {
app.StartApp()
test.AppWorks(t)
t.Run("TestAssetTypes", assetTypes)
t.Run("TestWidgetTypes", widgetTypes)
t.Run("TestSchema", schema)
app.StopApp()
}
func assetTypes(t *testing.T) {
t.Parallel()
assert.AssetTypeExists(t, "Hailo FDS Bin", []string{})
assert.AssetTypeExists(t, "Hailo Digital Hub", []string{})
assert.AssetTypeExists(t, "Hailo FDS Recycling Station", []string{})
}
func widgetTypes(t *testing.T) {
t.Parallel()
assert.WidgetTypeExists(t, "Hailo")
assert.WidgetTypeExists(t, "Hailo Station")
}
func schema(t *testing.T) {
t.Parallel()
assert.SchemaExists(t, "hailo", []string{"config", "asset"})
}