Skip to content

Commit

Permalink
refactor(services/libsql): Migrate libsql task to new behavior test p…
Browse files Browse the repository at this point in the history
…lanner (#3363)

* refactor(services/libsql): Migrate libsql task to new behavior test planner

Signed-off-by: Manjusaka <[email protected]>

* Update code

Signed-off-by: Manjusaka <[email protected]>

---------

Signed-off-by: Manjusaka <[email protected]>
  • Loading branch information
Zheaoli authored Nov 3, 2023
1 parent 318decc commit 303f6e5
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 133 deletions.
1 change: 0 additions & 1 deletion .github/scripts/behavior_test/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ def calculate_hint(changed_files: list[str]) -> Hint:
hint.binding_python = True
hint.binding_nodejs = True
hint.services.add(match.group(1))

return hint


Expand Down
57 changes: 57 additions & 0 deletions .github/services/libsql/libsql-auth/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

name: libsql-auth
description: 'Behavior test for libsql auth'

runs:
using: "composite"
steps:
- name: Setup libsql
shell: bash
working-directory: fixtures/libsql
run: docker-compose -f docker-compose-auth.yml up -d
- name: Create table
shell: bash
working-directory: core
run: |
curl --location '127.0.0.1:8080/v2/pipeline' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJleHAiOjc5ODg0ODM4Mjd9.MatB2aLnPFusagqH2RMoVExP37o2GFLmaJbmd52OdLtAehRNeqeJZPrefP1t2GBFidApUTLlaBRL6poKq_s3CQ' \
--data '{
"baton": null,
"requests": [
{
"type": "execute",
"stmt": {
"sql": "CREATE TABLE IF NOT EXISTS `data` (`key` TEXT PRIMARY KEY NOT NULL CHECK(length(key) <= 255),`data` BLOB);",
"args": [],
"want_rows": true
}
}
]
}'
- name: Setup
shell: bash
run: |
cat << EOF >> $GITHUB_ENV
OPENDAL_LIBSQL_CONNECTION_STRING=http://127.0.0.1:8080
OPENDAL_LIBSQL_AUTH_TOKEN=eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJleHAiOjc5ODg0ODM4Mjd9.MatB2aLnPFusagqH2RMoVExP37o2GFLmaJbmd52OdLtAehRNeqeJZPrefP1t2GBFidApUTLlaBRL6poKq_s3CQ
OPENDAL_LIBSQL_TABLE=data
OPENDAL_LIBSQL_KEY_FIELD=key
OPENDAL_LIBSQL_VALUE_FIELD=data
EOF
55 changes: 55 additions & 0 deletions .github/services/libsql/libsql/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

name: libsql
description: 'Behavior test for libsql'

runs:
using: "composite"
steps:
- name: Setup libsql
shell: bash
working-directory: fixtures/libsql
run: docker-compose -f docker-compose.yml up -d
- name: Create table
shell: bash
working-directory: core
run: |
curl --location '127.0.0.1:8080/v2/pipeline' \
--header 'Content-Type: application/json' \
--data '{
"baton": null,
"requests": [
{
"type": "execute",
"stmt": {
"sql": "CREATE TABLE IF NOT EXISTS `data` (`key` TEXT PRIMARY KEY NOT NULL CHECK(length(key) <= 255),`data` BLOB);",
"args": [],
"want_rows": true
}
}
]
}'
- name: Setup
shell: bash
run: |
cat << EOF >> $GITHUB_ENV
OPENDAL_LIBSQL_CONNECTION_STRING=http://127.0.0.1:8080
OPENDAL_LIBSQL_TABLE=data
OPENDAL_LIBSQL_KEY_FIELD=key
OPENDAL_LIBSQL_VALUE_FIELD=data
EOF
132 changes: 0 additions & 132 deletions .github/workflows/service_test_libsql.yml

This file was deleted.

3 changes: 3 additions & 0 deletions bindings/java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ services-all = [
"services-mongodb",
"services-sqlite",
"services-azfile",
"services-libsql",
]

# Default services provided by opendal.
Expand Down Expand Up @@ -129,6 +130,8 @@ services-supabase = ["opendal/services-supabase"]
services-tikv = ["opendal/services-tikv"]
services-vercel-artifacts = ["opendal/services-vercel-artifacts"]
services-wasabi = ["opendal/services-wasabi"]
services-libsql = ["opendal/services-libsql"]


[dependencies]
anyhow = "1.0.71"
Expand Down
2 changes: 2 additions & 0 deletions bindings/nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ services-all = [
"services-wasabi",
"services-mongodb",
"services-sqlite",
"services-libsql"
]

# Default services provided by opendal.
Expand Down Expand Up @@ -125,6 +126,7 @@ services-supabase = ["opendal/services-supabase"]
services-tikv = ["opendal/services-tikv"]
services-vercel-artifacts = ["opendal/services-vercel-artifacts"]
services-wasabi = ["opendal/services-wasabi"]
services-libsql = ["opendal/services-libsql"]

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ services-all = [
"services-wasabi",
"services-mongodb",
"services-sqlite",
"services-libsql"
]

# Default services provided by opendal.
Expand Down Expand Up @@ -125,6 +126,7 @@ services-supabase = ["opendal/services-supabase"]
services-tikv = ["opendal/services-tikv"]
services-vercel-artifacts = ["opendal/services-vercel-artifacts"]
services-wasabi = ["opendal/services-wasabi"]
services-libsql = ["opendal/services-libsql"]

[lib]
crate-type = ["cdylib"]
Expand Down

0 comments on commit 303f6e5

Please sign in to comment.