dsunit

所属分类:collect
开发工具:GO
文件大小:0KB
下载次数:0
上传日期:2023-06-04 23:48:08
上 传 者sh-1993
说明:  数据存储可测试性,
(Datastore Testibility,)

文件列表:
CHANGELOG.md (2218, 2023-08-07)
LICENSE (11544, 2023-08-07)
NOTICE (146, 2023-08-07)
api.go (313, 2023-08-07)
client.go (5064, 2023-08-07)
contract.go (17541, 2023-08-07)
datafile.go (872, 2023-08-07)
datafile_test.go (528, 2023-08-07)
dataset.go (8041, 2023-08-07)
dataset_test.go (2699, 2023-08-07)
dbtypemap.go (2591, 2023-08-07)
doc.go (526, 2023-08-07)
docs/ (0, 2023-08-07)
dsc.go (3963, 2023-08-07)
example/ (0, 2023-08-07)
example/aerospike/ (0, 2023-08-07)
example/aerospike/aerospike_test.go (2162, 2023-08-07)
example/aerospike/config/ (0, 2023-08-07)
example/aerospike/config/init.json (361, 2023-08-07)
example/aerospike/config/init.yaml (266, 2023-08-07)
example/aerospike/data/ (0, 2023-08-07)
example/aerospike/data/use_case_1_expect_users.json (355, 2023-08-07)
example/aerospike/data/use_case_1_prepare_users.json (350, 2023-08-07)
example/bigquery/ (0, 2023-08-07)
example/bigquery/bg_test.go (427, 2023-08-07)
example/bigquery/config/ (0, 2023-08-07)
example/bigquery/config/init.json (453, 2023-08-07)
example/bigquery/config/init.yaml (322, 2023-08-07)
example/bigquery/config/secret.json (37, 2023-08-07)
example/bigquery/config/user_schema.json (386, 2023-08-07)
example/bigquery/data/ (0, 2023-08-07)
example/bigquery/data/use_case_1_expect_users.json (323, 2023-08-07)
example/bigquery/data/use_case_1_prepare_users.json (323, 2023-08-07)
example/bigquery/with_dll/ (0, 2023-08-07)
example/bigquery/with_dll/bg_test.go (427, 2023-08-07)
example/bigquery/with_dll/config/ (0, 2023-08-07)
example/bigquery/with_dll/config/init.yaml (166, 2023-08-07)
... ...

# Datastore Testibility (dsunit) [![Datastore testibility library for Go.](https://goreportcard.com/badge/github.com/viant/dsunit)](https://goreportcard.com/report/github.com/viant/dsunit) [![GoDoc](https://godoc.org/github.com/viant/dsunit?status.svg)](https://godoc.org/github.com/viant/dsunit) This library is compatible with Go 1.10+ Please refer to [`CHANGELOG.md`](CHANGELOG.md) if you encounter breaking changes. - [Introduction](#Introduction) - [Motivation](#Motivation) - [API Documentaion](#API-Documentation) - [Examples](#examples) - [License](#License) - [Credits and Acknowledgements](#Credits-and-Acknowledgements) ## Introduction Data focused testing belongs to blackbox group, where the main interest goes down to the initial and final state of the datastore. To set the initial state of ta datastore, this framework provies utilities to either create empty datastore, or to prepare it with dataset data to test that application works correctly. The final state testing focuses on checking that a dataset data matches an expected set of values after application logic run. In this case this library has ability to verify either complete or snapshot state of a datastore. While the first approach will be comparing all tables data with expected set of values, the latter will reduced verification to the range provided by expected dataset. ## Motivation This library has been design to provide easy and unified way of testing any datastore (SQL, NoSSQL,file logs) on any platform, language and on the cloud. It simplifies test organization by dataset auto discovery used for datastore preparation and verification. Dataset data can be loaded from various sources like: memory, local or remote csv, json files. All dataset support macro expression to dynamically evaluate value of data i.e On top of that expected data, can also use predicate expressions to delegate verification of the data values i.e. . Finally a dataset like a view can be used to store data for many datastore sources in in just one dataset file. Datastore initialization and dataset data verification can by managed locally or remotely on remote data store unit test server. ## Usage ###### Data setup and verification 1. With dedicated expected data folder ```go import ( "testing" "github.com/viant/dsunit" _ "github.com/go-sql-driver/mysql" ) func Test_Usecase(t *testing.T) { parent := toolbox.CallerDirectory(3) if !dsunit.InitFromURL(t, path.Join(parent, "test", "config.yaml")) { return } ... business test logic comes here expectURL := path.Join(parent, "test/case1/data/expect") expectedData := dsunit.NewDatasetResource("db1", expectURL , "", "") dsunit.Expect(t, dsunit.NewExpectRequest(dsunit.FullTableDatasetCheckPolicy, expectedData)) } ``` 2. With shared expected data folder ```go func Test_Usecase(t *testing.T) { parent := toolbox.CallerDirectory(3) if !dsunit.InitFromURL(t, path.Join(parent, "test", "config.yaml")) { return } ... business test logic comes here baseDir := path.Join(parent, "test", "data") dsunit.ExpectFor(t, "db1", dsunit.FullTableDatasetCheckPolicy, baseDir, "use_case_1") } ``` ###### Forcing table truncation before loading data [@table_x.json]() ```json [ {}, {"id":1,"name":"name 1"}, {"id":2,"name":"name 2"} ] ``` When pre-seeding table with data, if the first element is empty map, dsunit deletes all record from a table before inserting supplied dataset. [@table_x.json]() ```json [] ``` Empty array will with prepare method removes all record from a table. ###### Reverse engineer data setup and verification ```go registerResponse := service.Register(dsunit.NewRegisterRequest("db1", &dsc.Config{ DriverName: "sqlite3", Descriptor: "[url]", Parameters: map[string]interface{}{ "url": filename, }, })) if registerResponse.Stats != "ok" { log.Fatal(registerResponse.Error) } response := service.Freeze(&dsunit.FreezeRequest{ Datastore:"db1", DestURL:"/tmp/dn1/expect/users.json", SQL:"SELECT * FROM users", }) ``` ###### Tester methods | Service Methods | Description | Request | Response | | --- | --- | --- | --- | | Register(t *testing.T, request *RegisterRequest) bool | register database connection | [RegisterRequest](https://github.com/viant/dsunit/blob/master/contract.go#L46) | [RegisterResponse](https://github.com/viant/dsunit/blob/master/contract.go#L70) | | RegisterFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [RegisterRequest](https://github.com/viant/dsunit/blob/master/contract.go#L46) | [RegisterResponse](https://github.com/viant/dsunit/blob/master/contract.go#L70) | | Recreate(t *testing.T, request *RecreateRequest) bool | recreate database/datastore | [RecreateRequest](https://github.com/viant/dsunit/blob/master/contract.go#L76) | [RecreateResponse](https://github.com/viant/dsunit/blob/master/contract.go#L98) | | RecreateFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [RecreateRequest](https://github.com/viant/dsunit/blob/master/contract.go#L76) | [RecreateResponse](https://github.com/viant/dsunit/blob/master/contract.go#L98) | | RunSQL(t *testing.T, request *RunSQLRequest) bool | run SQL commands | [RunSQLRequest](https://github.com/viant/dsunit/blob/master/contract.go#L103) | [RunSQLResponse](https://github.com/viant/dsunit/blob/master/contract.go#L126) | | RunSQLFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [RunSQLRequest](https://github.com/viant/dsunit/blob/master/contract.go#L103) | [RunSQLResponse](https://github.com/viant/dsunit/blob/master/contract.go#L126) | | RunScript(t *testing.T, request *RunScriptRequest) bool | run SQL script | [RunScriptRequest](https://github.com/viant/dsunit/blob/master/contract.go#L132) | [RunSQLResponse](https://github.com/viant/dsunit/blob/master/contract.go#L126) | | RunScriptFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [RunScriptRequest](https://github.com/viant/dsunit/blob/master/contract.go#L132) | [RunSQLResponse](https://github.com/viant/dsunit/blob/master/contract.go#L126) | | AddTableMapping(t *testing.T, request *MappingRequest) bool | register database table mapping (view), | [MappingRequest](https://github.com/viant/dsunit/blob/master/contract.go#L155) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L217) | | AddTableMappingFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [MappingRequest](https://github.com/viant/dsunit/blob/master/contract.go#L155) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L217) | | Init(t *testing.T, request *InitRequest) bool | initialize datastore (register, recreate, run sql, add mapping) | [InitRequest](https://github.com/viant/dsunit/blob/master/contract.go#L225) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L286) | | InitFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [InitRequest](https://github.com/viant/dsunit/blob/master/contract.go#L225) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L286) | | Prepare(t *testing.T, request *PrepareRequest) bool | populate databstore with provided data | [PrepareRequest](https://github.com/viant/dsunit/blob/master/contract.go#L293) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L323) | | PrepareFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [PrepareRequest](https://github.com/viant/dsunit/blob/master/contract.go#L293) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L323) | | PrepareDatastore(t *testing.T, datastore string) bool | match to populate all data files that are in the same location as a test file, with the same test file prefix, followed by lowe camel case test name | n/a | n/a | | PrepareFor(t *testing.T, datastore string, baseDirectory string, method string) bool | match to populate all data files that are located in baseDirectory with method name | n/a | n/a | | Expect(t *testing.T, request *ExpectRequest) bool | verify databstore with provided data | [ExpectRequest](https://github.com/viant/dsunit/blob/master/contract.go#L340) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L380) | | ExpectFromURL(t *testing.T, URL string) bool | as above, where JSON request is fetched from URL/relative path | [ExpectRequest](https://github.com/viant/dsunit/blob/master/contract.go#L340) | [MappingResponse](https://github.com/viant/dsunit/blob/master/contract.go#L380) | | ExpectDatasets(t *testing.T, datastore string, checkPolicy int) bool | match to verify all data files that are in the same location as a test file, with the same test file prefix, followed by lowe camel case test name | n/a | n/a | | ExpectFor(t *testing.T, datastore string, checkPolicy int, baseDirectory string, method string) bool | match to verify all dataset files that are located in the same directory as the test file with method name | n/a | n/a | | Freeze(request *FreezeRequest) *FreezeResponse | match to verify all dataset files that are located in the same directory as the test file with method name | n/a | n/a | | Dump(request *DumpRequest) *DumpResponse | creates a database schema from existing database for supplied tables, datastore, and target Vendor | [DumpRequest](https://github.com/viant/dsunit/blob/master/contract.go) | [DumpResponse](https://github.com/viant/dsunit/blob/master/contract.go) | | Compare(request *CompareRequest) *CompareResponse | compares data based on specified SQLs from various databases | [CompareRequest](https://github.com/viant/dsunit/blob/master/contract.go) | [CompareResponse](https://github.com/viant/dsunit/blob/master/contract.go) | ## Validation This library uses [assertly](https://github.com/viant/assertly) as the underlying validation mechanism ### Macros The macro is an expression with parameters that expands original text value. The general format of macro: <ds:MACRO_NAME [json formated array of parameters]> The following macro are build-in: | Name | Parameters | Description | Example | | --- | --- | --- | --- | | sql | SQL expression | Returns value of SQL expression | <ds:sql["SELECT CURRENT_DATE()"]> | | seq | name of sequence/table for autoicrement| Returns value of Sequence| <ds:seq["users"]> | ### Predicates Predicate allows expected value to be evaluated with actual dataset value using custom predicate logic. | Name | Parameters | Description | Example | | --- | --- | --- | --- | | between | from, to values | Evaluate actual value with between predicate | <ds:between[1.888889, 1.88889]> | | within_sec | base time, delta, optional date format | Evaluate if actual time is within delta of the base time | <ds:within_sec["now", 6, "yyyyMMdd HH:mm:ss"]> | ### Directives #### Data preparation Most SQL drivers provide meta data about autoincrement, primary key, however if this is not available or partial verification with SQL is used, the following directive come handy. **@autoincrement@** Allows specifying autoincrement field ```json [ {"@autoincrement@":"id"}, {"id":1, "username":"Dudi", "active":true, "salary":12400, "comments":"abc","last_access_time": "2016-03-01 03:10:00"}, {"id":2, "username":"Rudi", "active":true, "salary":12600, "comments":"def","last_access_time": "2016-03-01 05:10:00"} ] ``` **@indexBy@** (see also asserly indexBy directive usage, for nested data structe validation) Allows specifying pk fields ```json [ {"@indexBy@":["id"]}, {"id":1, "username":"Dudi", "active":true, "salary":12400, "comments":"abc","last_access_time": "2016-03-01 03:10:00"}, {"id":2, "username":"Rudi", "active":true, "salary":12600, "comments":"def","last_access_time": "2016-03-01 05:10:00"} ] ``` #### Data validation. **@fromQuery@** Allows specified query to fetch actual dataset to be validated against expected dataset **users.json** ```json [ {"@fromQuery@":"SELECT * FROM users where id <= 2 ORDER BY id"}, {"id":1, "username":"Dudi", "active":true, "salary":12400, "comments":"abc","last_access_time": "2016-03-01 03:10:00"}, {"id":2, "username":"Rudi", "active":true, "salary":12600, "comments":"def","last_access_time": "2016-03-01 05:10:00"} ] ``` ## API Documentation API documentation is available in the [`docs`](docs/README.md) directory. ## GoCover [![GoCover](https://gocover.io/github.com/viant/dsunit)](https://gocover.io/github.com/viant/dsunit) ## Examples This project provide a various datasore **dsunit** integration examples (some with docker vi endly). ### RDBMS * [Big Query](example/bigquery/) * [MySQL](example/mysql) * [Oracle](example/ora) * [Postgres](example/pg) ## NoSQL * [Aerospike](example/aerospike/) * [MongoDB](example/mongo) * [Casandra](example/casandra) * [Firebase](example/firebase) * [DynamoDB](example/dynamodb) **External projects:**: * [Simple CRUD app with dsunit](https://github.com/viant/dsc/tree/master/examples) ## License The source code is made available under the terms of the Apache License, Version 2, as stated in the file `LICENSE`. Individual files may be made available under their own specific license, all compatible with Apache License, Version 2. Please see individual files for details. ## Credits and Acknowledgements **Library Author:** Adrian Witas **Contributors:** Sudhakaran Dharmaraj

近期下载者

相关文件


收藏者