|
| 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 | +} |
0 commit comments