TDengine/tests/docs-examples-test/test_rust.sh
Bo Ding 4eba506ff4
test scripts for all connector's sample codes (#11354)
* test: add test scripts

* test: change mod of test scripts to 755

* map docs-examples to container

* test: add test_python.sh

* test: add test_c.sh

* test: add test_go.sh

* test: fix test_go.sh

* test: add test_node.sh

* test: fix test_node.sh

* test: add test_rust.sh

* test: fix connect.rs

* test: fix csharp demo program

* test: add test_csharp.sh

* typo

* test: add java sample code to test

Co-authored-by: tangfangzhi <fztang@taosdata.com>
2022-04-10 00:02:45 +08:00

29 lines
No EOL
784 B
Bash
Executable file

#!/bin/bash
set -e
pgrep taosd || taosd >> /dev/null 2>&1 &
pgrep taosadapter || taosadapter >> /dev/null 2>&1 &
cd ../../docs-examples/rust
cargo run -p nativeexample --example connect
cargo run -p restexample --example connect
taos -s "drop database if exists power"
cargo run -p restexample --example insert_example
cargo run -p restexample --example query_example
taos -s "drop database if exists power"
cargo run -p nativeexample --example stmt_example
taos -s "drop database if exists test"
cargo run -p schemalessexample --example influxdb_line_example
taos -s "drop database if exists test"
cargo run -p schemalessexample --example opentsdb_telnet_example
taos -s "drop database if exists test"
cargo run -p schemalessexample --example opentsdb_json_example