mirror of
https://github.com/go-micro/go-micro.git
synced 2025-08-04 21:42:57 +02:00
* feat: more plugins * chore(ci): split out benchmarks Attempt to resolve too many open files in ci * chore(ci): split out benchmarks * fix(ci): Attempt to resolve too many open files in ci * fix: set DefaultX for cli flag and service option * fix: restore http broker * fix: default http broker * feat: full nats profile * chore: still ugly, not ready * fix: better initialization for profiles * fix(tests): comment out flaky listen tests * fix: disable benchmarks on gha * chore: cleanup, comments * chore: add nats config source
139 lines
2.3 KiB
Go
139 lines
2.3 KiB
Go
package natsjskv
|
|
|
|
import "go-micro.dev/v5/store"
|
|
|
|
type test struct {
|
|
Record *store.Record
|
|
Database string
|
|
Table string
|
|
}
|
|
|
|
var (
|
|
table = []test{
|
|
{
|
|
Record: &store.Record{
|
|
Key: "One",
|
|
Value: []byte("First value"),
|
|
},
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Two",
|
|
Value: []byte("Second value"),
|
|
},
|
|
Table: "prefix_test",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Third",
|
|
Value: []byte("Third value"),
|
|
},
|
|
Database: "new-bucket",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Four",
|
|
Value: []byte("Fourth value"),
|
|
},
|
|
Database: "new-bucket",
|
|
Table: "prefix_test",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "empty-value",
|
|
Value: []byte{},
|
|
},
|
|
Database: "new-bucket",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Alex",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "names",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Jones",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "names",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Adrianna",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "names",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "MexicoCity",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "cities",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "HoustonCity",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "cities",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "ZurichCity",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "cities",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "Helsinki",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Database: "prefix-test",
|
|
Table: "cities",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "testKeytest",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Table: "some_table",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "testSecondtest",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Table: "some_table",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "lalala",
|
|
Value: []byte("Some value"),
|
|
},
|
|
Table: "some_table",
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "testAnothertest",
|
|
Value: []byte("Some value"),
|
|
},
|
|
},
|
|
{
|
|
Record: &store.Record{
|
|
Key: "FobiddenCharactersAreAllowed:|@..+",
|
|
Value: []byte("data no matter"),
|
|
},
|
|
},
|
|
}
|
|
)
|