blob: 98fb54de436a7a925c786e92abfbee40b47f0d21 [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.james.backends.postgres;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Optional;
import org.apache.james.backends.postgres.utils.JamesPostgresConnectionFactory;
import org.apache.james.core.Domain;
import org.junit.jupiter.api.Test;
import com.google.common.collect.ImmutableList;
import io.r2dbc.spi.Connection;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
public abstract class JamesPostgresConnectionFactoryTest {
abstract JamesPostgresConnectionFactory jamesPostgresConnectionFactory();
@Test
void getConnectionShouldWork() {
Connection connection = jamesPostgresConnectionFactory().getConnection(Optional.empty()).block();
String actual = Flux.from(connection.createStatement("SELECT 1")
.execute())
.flatMap(result -> result.map((row, rowMetadata) -> row.get(0, String.class)))
.collect(ImmutableList.toImmutableList())
.block().get(0);
assertThat(actual).isEqualTo("1");
}
@Test
void getConnectionWithDomainShouldWork() {
Connection connection = jamesPostgresConnectionFactory().getConnection(Domain.of("james")).block();
String actual = Flux.from(connection.createStatement("SELECT 1")
.execute())
.flatMap(result -> result.map((row, rowMetadata) -> row.get(0, String.class)))
.collect(ImmutableList.toImmutableList())
.block().get(0);
assertThat(actual).isEqualTo("1");
}
@Test
void getConnectionShouldSetCurrentDomainAttribute() {
Domain domain = Domain.of("james");
Connection connection = jamesPostgresConnectionFactory().getConnection(domain).block();
String actual = getDomainAttributeValue(connection);
assertThat(actual).isEqualTo(domain.asString());
}
@Test
void getConnectionWithoutDomainShouldReturnEmptyAttribute() {
Connection connection = jamesPostgresConnectionFactory().getConnection(Optional.empty()).block();
String message = Flux.from(connection.createStatement("show " + JamesPostgresConnectionFactory.DOMAIN_ATTRIBUTE)
.execute())
.flatMap(result -> result.map((row, rowMetadata) -> row.get(0, String.class)))
.collect(ImmutableList.toImmutableList())
.map(strings -> "")
.onErrorResume(throwable -> Mono.just(throwable.getMessage()))
.block();
assertThat(message).isEqualTo("");
}
String getDomainAttributeValue(Connection connection) {
return Flux.from(connection.createStatement("show " + JamesPostgresConnectionFactory.DOMAIN_ATTRIBUTE)
.execute())
.flatMap(result -> result.map((row, rowMetadata) -> row.get(0, String.class)))
.collect(ImmutableList.toImmutableList())
.block().get(0);
}
}