Skip to content

Commit

Permalink
test: add integration tests for dynamodb document implementation
Browse files Browse the repository at this point in the history
Signed-off-by: Maximillian Arruda <dearrudam@gmail.com>
  • Loading branch information
dearrudam committed Mar 12, 2024
1 parent f564e19 commit 8244687
Show file tree
Hide file tree
Showing 2 changed files with 220 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
* Copyright (c) 2024 Contributors to the Eclipse Foundation
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
*
* You may elect to redistribute this code under either of these licenses.
*
* Contributors:
*
* Maximillian Arruda
*/

package org.eclipse.jnosql.databases.dynamodb.integration;

import jakarta.nosql.Column;
import jakarta.nosql.Entity;
import jakarta.nosql.Id;

import java.util.Objects;

@Entity
public class Book {

@Id("id")
private String id;

@Column("title")
private String title;

@Column("edition")
private int edition;

public Book(String id, String title, int edition) {
this.id = id;
this.title = title;
this.edition = edition;
}

Book() {
}

public String id() {
return id;
}

public String title() {
return title;
}

public int edition() {
return edition;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Book book = (Book) o;
return edition == book.edition
&& Objects.equals(id, book.id)
&& Objects.equals(title, book.title);
}

@Override
public int hashCode() {
return Objects.hash(id, title, edition);
}

@Override
public String toString() {
return "Book{" +
"id='" + id + '\'' +
", title='" + title + '\'' +
", edition=" + edition +
'}';
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
/*
* Copyright (c) 2024 Contributors to the Eclipse Foundation
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
*
* You may elect to redistribute this code under either of these licenses.
*
* Contributors:
*
* Maximillian Arruda
*/

package org.eclipse.jnosql.databases.dynamodb.integration;

import jakarta.inject.Inject;
import org.eclipse.jnosql.communication.Settings;
import org.eclipse.jnosql.databases.dynamodb.communication.DynamoDBConfigurations;
import org.eclipse.jnosql.databases.dynamodb.communication.DynamoDBTestUtils;
import org.eclipse.jnosql.databases.dynamodb.mapping.DynamoDBExtension;
import org.eclipse.jnosql.databases.dynamodb.mapping.DynamoDBTemplate;
import org.eclipse.jnosql.mapping.Convert;
import org.eclipse.jnosql.mapping.core.Converters;
import org.eclipse.jnosql.mapping.core.spi.EntityMetadataExtension;
import org.eclipse.jnosql.mapping.document.DocumentEntityConverter;
import org.eclipse.jnosql.mapping.document.spi.DocumentExtension;
import org.eclipse.jnosql.mapping.reflection.Reflections;
import org.jboss.weld.junit5.auto.AddExtensions;
import org.jboss.weld.junit5.auto.AddPackages;
import org.jboss.weld.junit5.auto.EnableAutoWeld;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledIfSystemProperty;

import java.util.Optional;

import static java.util.UUID.randomUUID;
import static org.assertj.core.api.SoftAssertions.assertSoftly;
import static org.assertj.core.api.Assertions.assertThat;
import static org.eclipse.jnosql.communication.driver.IntegrationTest.MATCHES;
import static org.eclipse.jnosql.communication.driver.IntegrationTest.NAMED;

@EnableAutoWeld
@AddPackages(value = {Convert.class, DocumentEntityConverter.class})
@AddPackages(Book.class)
@AddPackages(DynamoDBTemplate.class)
@AddExtensions({EntityMetadataExtension.class, DocumentExtension.class, DynamoDBExtension.class})
@AddPackages(Reflections.class)
@AddPackages(Converters.class)
@EnabledIfSystemProperty(named = NAMED, matches = MATCHES)
class DynamoDBTemplateIntegrationTest {

static {
DynamoDBTestUtils.CONFIG.setupSystemProperties(Settings.builder()
.put(DynamoDBConfigurations.CREATE_TABLES, "true"));
}

@Inject
private DynamoDBTemplate template;

@Test
void shouldInsert() {
Book book = new Book(randomUUID().toString(), "Effective Java", 1);
template.insert(book);
Optional<Book> optional = template.find(Book.class, book.id());
assertThat(optional).isNotNull().isNotEmpty()
.get().isEqualTo(book);
}

@Test
void shouldUpdate() {
Book book = new Book(randomUUID().toString(), "Effective Java", 1);
assertThat(template.insert(book))
.isNotNull()
.isEqualTo(book);

Book updated = new Book(book.id(), book.title() + " updated", 2);

assertThat(template.update(updated))
.isNotNull()
.isNotEqualTo(book);

assertThat(template.find(Book.class, book.id()))
.isNotNull().get().isEqualTo(updated);

}

@Test
void shouldFindById() {
Book book = new Book(randomUUID().toString(), "Effective Java", 1);
assertThat(template.insert(book))
.isNotNull()
.isEqualTo(book);

assertThat(template.find(Book.class, book.id()))
.isNotNull().get().isEqualTo(book);
}

@Test
void shouldDelete() {
Book book = new Book(randomUUID().toString(), "Effective Java", 1);
assertThat(template.insert(book))
.isNotNull()
.isEqualTo(book);

template.delete(Book.class, book.id());
assertThat(template.find(Book.class, book.id()))
.isNotNull().isEmpty();
}

@Test
void shouldDeleteAll() {
for (int index = 0; index < 20; index++) {
Book book = new Book(randomUUID().toString(), "Effective Java", 1);
assertThat(template.insert(book))
.isNotNull()
.isEqualTo(book);
}

template.delete(Book.class).execute();
assertThat(template.select(Book.class).result()).isEmpty();
}

@Test
void shouldUpdateNullValues() {
var book = new Book(randomUUID().toString(), "Effective Java", 1);
template.insert(book);
template.update(new Book(book.id(), null, 2));
Optional<Book> optional = template.select(Book.class).where("id")
.eq(book.id()).singleResult();
assertSoftly(softly -> {
softly.assertThat(optional).isPresent();
softly.assertThat(optional).get().extracting(Book::title).isNull();
softly.assertThat(optional).get().extracting(Book::edition).isEqualTo(2);
});
}


}

0 comments on commit 8244687

Please sign in to comment.