This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtst_utils.go
152 lines (118 loc) · 3.47 KB
/
tst_utils.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
//
// Copyright (c) 2017, Stardog Union. <http://stardog.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sdutils
import (
"fmt"
"errors"
)
// TestContext is used for mocking out a context in many tests
type TestContext struct {
ConfigDir string
Version string
}
func (c *TestContext) GetInteractive() bool {
return true
}
func (c *TestContext) Logf(level int, format string, v ...interface{}) {
}
func (c *TestContext) ConsoleLog(level int, format string, v ...interface{}) {
}
func (c *TestContext) GetConfigDir() string {
return c.ConfigDir
}
func (c *TestContext) GetVersion() string {
return c.Version
}
func (c *TestContext) HighlightString(a ...interface{}) string {
return fmt.Sprint(a...)
}
func (c *TestContext) SuccessString(a ...interface{}) string {
return fmt.Sprint(a...)
}
func (c *TestContext) FailString(a ...interface{}) string {
return fmt.Sprint(a...)
}
type tstPlugin struct {
HasImage bool
Dep Deployment
}
func (tp *tstPlugin) Register(cmdOpts *CommandOpts) error {
return nil
}
func (tp *tstPlugin) DeploymentLoader(context AppContext, baseD *BaseDeployment, new bool) (Deployment, error) {
if tp.Dep == nil {
return nil, errors.New("This test plugin loads no deployment")
}
return tp.Dep, nil
}
func (tp *tstPlugin) LoadDefaults(defaultCliOpts interface{}) error {
return nil
}
func (tp *tstPlugin) BuildImage(context AppContext, sdReleaseFilePath string, version string) error {
return nil
}
func (tp *tstPlugin) GetName() string {
return "test1loaderror"
}
func (tp *tstPlugin) FindLeaks(context AppContext, deploymentName string, destroy bool, force bool) error {
return nil
}
func (tp *tstPlugin) HaveImage(context AppContext) bool {
return tp.HasImage
}
type tpDeployment struct {
TstInstanceExists bool
TstVolumeExists bool
SdDesc *StardogDescription
}
func (tstDep *tpDeployment) CreateVolumeSet(licensePath string, sizeOfEachVolume int, clusterSize int) error {
return nil
}
func (tstDep *tpDeployment) DeleteVolumeSet() error {
return nil
}
func (tstDep *tpDeployment) StatusVolumeSet() error {
return nil
}
func (tstDep *tpDeployment) VolumeExists() bool {
return tstDep.TstVolumeExists
}
func (tstDep *tpDeployment) CreateInstance(rootSize int, zookeeperSize int, idleTimeout int, bastionVolSnapshotId string) error {
return nil
}
func (tstDep *tpDeployment) OpenInstance(rootSize int, zookeeperSize int, mask string, idleTimeout int) error {
return nil
}
func (tstDep *tpDeployment) DeleteInstance() error {
return nil
}
func (tstDep *tpDeployment) StatusInstance() error {
return nil
}
func (tstDep *tpDeployment) RunClientInstance(cmdArray []string) error {
return nil
}
func (tstDep *tpDeployment) InstanceExists() bool {
return tstDep.TstInstanceExists
}
func (tstDep *tpDeployment) FullStatus() (*StardogDescription, error) {
return tstDep.SdDesc, nil
}
func (tstDep *tpDeployment) ClusterSize() (int, error) {
return 1, nil
}
func (tstDep *tpDeployment) DestroyDeployment() error {
return nil
}