diff --git a/test/influxdb3/auth.test.sh b/test/influxdb3/auth.test.sh deleted file mode 100644 index f99e052d9..000000000 --- a/test/influxdb3/auth.test.sh +++ /dev/null @@ -1,26 +0,0 @@ - -# [core3,enterprise3] -# Bearer auth works with v1 /query -curl -v http://localhost:8181/query \ ---header "Authorization: Bearer ${INFLUXDB3_ENTERPRISE_ADMIN_TOKEN}" \ ---data-urlencode "db=sensors" \ ---data-urlencode "q=SELECT * FROM home" - -# Bearer auth works with v1 /write -curl -v "http://localhost:8181/write?db=sensors" \ - --header "Authorization: Bearer ${INFLUXDB3_ENTERPRISE_ADMIN_TOKEN}" \ - --data-raw "sensors,location=home temperature=23.5 1622547800" - -# Basic auth works with v1 /write -curl -v "http://localhost:8181/write?db=sensors" \ ---user "admin:${INFLUXDB3_ENTERPRISE_ADMIN_TOKEN}" \ ---data-raw "sensors,location=home temperature=23.5 1622547800" - -# URL auth works with v1 /write -curl -v "http://localhost:8181/write?db=sensors&u=admin&p=${INFLUXDB3_ENTERPRISE_ADMIN_TOKEN}" \ ---data-raw "sensors,location=home temperature=23.5 1622547800" - -# Token auth works with /api/v2/write -curl -v http://localhost:8181/write?db=sensors \ ---header "Authorization: Token ${INFLUXDB3_ENTERPRISE_ADMIN_TOKEN}" \ ---data-raw "sensors,location=home temperature=23.5 1622547800" \ No newline at end of file diff --git a/test/influxdb3/database.test.sh b/test/influxdb3/database.test.sh deleted file mode 100644 index e0a111e7c..000000000 --- a/test/influxdb3/database.test.sh +++ /dev/null @@ -1,4 +0,0 @@ -# [core3,enterprise3] -# Delete a database with hard delete at date -curl -v -X DELETE "http://localhost:8181/api/v3/configure/database?hard_delete_at=20250701&db=sensors" \ - --header "Authorization: Bearer ${INFLUXDB3_ENTERPRISE_ADMIN_TOKEN}" \ No newline at end of file