mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2025-08-06 20:06:57 +02:00
Some checks failed
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
add spanner db build and tests - noting subset of server test failures ignore due to cargo weirdness
60 lines
1.8 KiB
Bash
Executable File
60 lines
1.8 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Copyright 2020 Google LLC
|
|
#
|
|
# Licensed 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.
|
|
#
|
|
# This file contains modifications of the original version.
|
|
#
|
|
|
|
sleep 5
|
|
|
|
set -e
|
|
|
|
PROJECT_ID=test-project
|
|
INSTANCE_ID=test-instance
|
|
DATABASE_ID=test-database
|
|
DIR=$(pwd)
|
|
|
|
if [ -f "schema.ddl" ]; then
|
|
echo "schema.ddl found in current directory: $DIR."
|
|
DDL_PATH="schema.ddl"
|
|
elif [ -f "syncstorage-spanner/src/schema.ddl" ]; then
|
|
echo "schema.ddl found in syncstorage-spanner/src."
|
|
DDL_PATH="syncstorage-spanner/src/schema.ddl"
|
|
else
|
|
echo "schema.ddl not found."
|
|
exit 1
|
|
fi
|
|
|
|
DDL_STATEMENTS=$(
|
|
grep -v ^-- $DDL_PATH \
|
|
| sed -n 's/ \+/ /gp' \
|
|
| tr -d '\n' \
|
|
| sed 's/\(.*\);/\1/' \
|
|
| jq -R -s -c 'split(";")'
|
|
)
|
|
|
|
curl -sS --request POST \
|
|
"$SYNC_SYNCSTORAGE__SPANNER_EMULATOR_HOST/v1/projects/$PROJECT_ID/instances" \
|
|
--header 'Accept: application/json' \
|
|
--header 'Content-Type: application/json' \
|
|
--data "{\"instance\":{\"config\":\"emulator-test-config\",\"nodeCount\":1,\"displayName\":\"Test Instance\"},\"instanceId\":\"$INSTANCE_ID\"}"
|
|
|
|
curl -sS --request POST \
|
|
"$SYNC_SYNCSTORAGE__SPANNER_EMULATOR_HOST/v1/projects/$PROJECT_ID/instances/$INSTANCE_ID/databases" \
|
|
--header 'Accept: application/json' \
|
|
--header 'Content-Type: application/json' \
|
|
--data "{\"createStatement\":\"CREATE DATABASE \`$DATABASE_ID\`\",\"extraStatements\":$DDL_STATEMENTS}"
|