blob: 2b1a158b372b03d24ea7de79b568bf54839983d5 [file] [log] [blame]
/*
* 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.
*/
package org.apache.cassandra.sidecar.routes.tokenrange;
import org.junit.jupiter.api.extension.ExtendWith;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.vertx.core.json.JsonObject;
import io.vertx.junit5.VertxExtension;
import io.vertx.junit5.VertxTestContext;
import org.apache.cassandra.testing.CassandraIntegrationTest;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Test the token range replica mapping endpoint with the in-jvm dtest framework.
*
* Note: Some related test classes are broken down to have a single test case to parallelize test execution and
* therefore limit the instance size required to run the tests from CircleCI as the in-jvm-dtests tests are memory bound
*/
@ExtendWith(VertxExtension.class)
class BasicTestUnknownKeyspace extends BaseTokenRangeIntegrationTest
{
@CassandraIntegrationTest
void retrieveMappingWithUnknownKeyspace(VertxTestContext context) throws Exception
{
retrieveMappingWithKeyspace(context, "unknown_ks", response -> {
int errorCode = HttpResponseStatus.NOT_FOUND.code();
assertThat(response.statusCode()).isEqualTo(errorCode);
JsonObject body = response.bodyAsJsonObject();
assertThat(body.getInteger("code")).isEqualTo(errorCode);
assertThat(body.getString("message")).contains("Unknown keyspace");
context.completeNow();
});
}
}