Skip to content

Commit c969d46

Browse files
DavidS-ovmactions-user
authored andcommitted
Improved test data (#889)
These are some minor improvements to the test data for the new test cases described in https://www.notion.so/overmindtech/SDPv2-160fb60360db80d9bc77efc56b0fbecf?pvs=4#1b6fb60360db809b8e5ff91f7e214ddc GitOrigin-RevId: d908b2a03a8d84609316920315ab4862b79db5b2
1 parent 1deb1d8 commit c969d46

File tree

5 files changed

+133
-16
lines changed

5 files changed

+133
-16
lines changed

discovery/engine_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ func GetTestOAuthTokenClient(t *testing.T, account string) auth.TokenClient {
708708
var clientSecret string
709709
var exists bool
710710

711-
errorFormat := "environment variable %v not found. Set up your test environment first. See: https://github.com/overmindtech/workspace/auth0-test-data"
711+
errorFormat := "environment variable %v not found. Set up your test environment first. See: https://github.com/overmindtech/cli/auth0-test-data"
712712

713713
// Read secrets form the environment
714714
if domain, exists = os.LookupEnv("OVERMIND_NTE_ALLPERMS_DOMAIN"); !exists || domain == "" {

sdp-go/auth/auth_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func GetTestOAuthTokenClient(t *testing.T) *natsTokenClient {
6565
var clientSecret string
6666
var exists bool
6767

68-
errorFormat := "environment variable %v not found. Set up your test environment first. See: https://github.com/overmindtech/workspace/auth0-test-data"
68+
errorFormat := "environment variable %v not found. Set up your test environment first. See: https://github.com/overmindtech/cli/auth0-test-data"
6969

7070
// Read secrets form the environment
7171
if domain, exists = os.LookupEnv("OVERMIND_NTE_ALLPERMS_DOMAIN"); !exists || domain == "" {

stdlib-source/adapters/test/data.go

+30-13
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ import (
1414
// This test data is designed to provide a full-featured graph to exercise all
1515
// parts of the system. The graph is as follows:
1616
//
17-
// +--------+
18-
// | admins |
19-
// +--------+
17+
// +----------+ +--------+
18+
// | knitting | | admins |
19+
// +----------+ +--------+
2020
// |
2121
// |
2222
// v
2323
// +--------------+ b +--------+ b
2424
// | motorcycling | <-- | dylan | -+
2525
// +--------------+ +--------+ |
2626
// |b |
27-
// | |
27+
// L |
2828
// vb |
29-
// +--------+ |
30-
// | manny | |
31-
// +--------+ |
29+
// +--------+ b +--------+ |
30+
// | kibble | <-- | manny | |
31+
// +--------+ +--------+ |
3232
// |b |
33-
// | |
33+
// S S
3434
// v |
3535
// +--------+ |
3636
// | london | <+
@@ -43,7 +43,7 @@ import (
4343
// +----+
4444
//
4545
// arrows indicate edge directions. b annotations indicate blast radius
46-
// propagation.
46+
// propagation. L indicates a LIST edge, S indicates a SEARCH edge.
4747

4848
// this global atomic variable keeps track of the generation count for test
4949
// items. It is increased every time a new item is created, and is used to
@@ -116,8 +116,7 @@ func dylan() *sdp.Item {
116116
{
117117
Query: &sdp.Query{
118118
Type: "test-dog",
119-
Method: sdp.QueryMethod_GET,
120-
Query: "test-manny",
119+
Method: sdp.QueryMethod_LIST,
121120
Scope: "test",
122121
},
123122
BlastPropagation: &sdp.BlastPropagation{
@@ -143,7 +142,7 @@ func dylan() *sdp.Item {
143142
{
144143
Query: &sdp.Query{
145144
Type: "test-location",
146-
Method: sdp.QueryMethod_GET,
145+
Method: sdp.QueryMethod_SEARCH,
147146
Query: "test-london",
148147
Scope: "test",
149148
},
@@ -166,7 +165,7 @@ func manny() *sdp.Item {
166165
{
167166
Query: &sdp.Query{
168167
Type: "test-location",
169-
Method: sdp.QueryMethod_GET,
168+
Method: sdp.QueryMethod_SEARCH,
170169
Query: "test-london",
171170
Scope: "test",
172171
},
@@ -177,11 +176,29 @@ func manny() *sdp.Item {
177176
Out: false,
178177
},
179178
},
179+
{
180+
Query: &sdp.Query{
181+
Type: "test-food",
182+
Method: sdp.QueryMethod_GET,
183+
Query: "test-kibble",
184+
Scope: "test",
185+
},
186+
BlastPropagation: &sdp.BlastPropagation{
187+
// there are other options
188+
In: false,
189+
// the kibble is soon gone
190+
Out: true,
191+
},
192+
},
180193
}
181194

182195
return i
183196
}
184197

198+
func kibble() *sdp.Item {
199+
return createTestItem("test-food", "test-kibble")
200+
}
201+
185202
func motorcycling() *sdp.Item {
186203
return createTestItem("test-hobby", "test-motorcycling")
187204
}
+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
package test
2+
3+
import (
4+
"context"
5+
6+
"github.com/overmindtech/cli/sdp-go"
7+
)
8+
9+
// TestFoodAdapter A adapter of `food` items for automated tests.
10+
type TestFoodAdapter struct{}
11+
12+
// Type is the type of items that this returns
13+
func (s *TestFoodAdapter) Type() string {
14+
return "test-food"
15+
}
16+
17+
// Name Returns the name of the backend
18+
func (s *TestFoodAdapter) Name() string {
19+
return "stdlib-test-food"
20+
}
21+
22+
func (s *TestFoodAdapter) Metadata() *sdp.AdapterMetadata {
23+
return &sdp.AdapterMetadata{
24+
Type: s.Type(),
25+
DescriptiveName: s.Name(),
26+
}
27+
}
28+
29+
// Weighting of duplicate adapters
30+
func (s *TestFoodAdapter) Weight() int {
31+
return 100
32+
}
33+
34+
// List of scopes that this adapter is capable of find items for
35+
func (s *TestFoodAdapter) Scopes() []string {
36+
return []string{
37+
"test",
38+
}
39+
}
40+
41+
func (s *TestFoodAdapter) Hidden() bool {
42+
return true
43+
}
44+
45+
// Gets a single item. This expects a name
46+
func (d *TestFoodAdapter) Get(ctx context.Context, scope string, query string, ignoreCache bool) (*sdp.Item, error) {
47+
if scope != "test" {
48+
return nil, &sdp.QueryError{
49+
ErrorType: sdp.QueryError_NOSCOPE,
50+
ErrorString: "test queries only supported in 'test' scope",
51+
Scope: scope,
52+
}
53+
}
54+
55+
switch query {
56+
case "test-kibble":
57+
return kibble(), nil
58+
default:
59+
return nil, &sdp.QueryError{
60+
ErrorType: sdp.QueryError_NOTFOUND,
61+
Scope: scope,
62+
}
63+
}
64+
}
65+
66+
func (d *TestFoodAdapter) List(ctx context.Context, scope string, ignoreCache bool) ([]*sdp.Item, error) {
67+
if scope != "test" {
68+
return nil, &sdp.QueryError{
69+
ErrorType: sdp.QueryError_NOSCOPE,
70+
ErrorString: "test queries only supported in 'test' scope",
71+
Scope: scope,
72+
}
73+
}
74+
75+
return []*sdp.Item{kibble()}, nil
76+
}
77+
78+
func (d *TestFoodAdapter) Search(ctx context.Context, scope string, query string, ignoreCache bool) ([]*sdp.Item, error) {
79+
if scope != "test" {
80+
return nil, &sdp.QueryError{
81+
ErrorType: sdp.QueryError_NOSCOPE,
82+
ErrorString: "test queries only supported in 'test' scope",
83+
Scope: scope,
84+
}
85+
}
86+
87+
switch query {
88+
case "", "*", "test-kibble":
89+
return []*sdp.Item{kibble()}, nil
90+
default:
91+
return nil, &sdp.QueryError{
92+
ErrorType: sdp.QueryError_NOTFOUND,
93+
Scope: scope,
94+
}
95+
}
96+
}

stdlib-source/adapters/test/testhobby.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,12 @@ func (d *TestHobbyAdapter) Search(ctx context.Context, scope string, query strin
8787
}
8888

8989
switch query {
90-
case "", "*", "test-motorcycling":
90+
case "", "*":
91+
return []*sdp.Item{motorcycling(), knitting()}, nil
92+
case "test-motorcycling":
9193
return []*sdp.Item{motorcycling()}, nil
94+
case "test-knitting":
95+
return []*sdp.Item{knitting()}, nil
9296
default:
9397
return nil, &sdp.QueryError{
9498
ErrorType: sdp.QueryError_NOTFOUND,

0 commit comments

Comments
 (0)