Skip to content

Commit 3b7eb98

Browse files
committed
DATAREST-776, DATAREST-775 - Integration tests for lookup types and nested associations.
Added shop integration test example that shows and tests nested associations and both unique and collection lookup type references.
1 parent 4e08d78 commit 3b7eb98

File tree

16 files changed

+626
-0
lines changed

16 files changed

+626
-0
lines changed

spring-data-rest-tests/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919
<module>spring-data-rest-tests-jpa</module>
2020
<module>spring-data-rest-tests-mongodb</module>
2121
<module>spring-data-rest-tests-security</module>
22+
<module>spring-data-rest-tests-shop</module>
2223
<module>spring-data-rest-tests-solr</module>
2324
</modules>
2425

2526
<properties>
2627
<groovy.version>2.4.4</groovy.version>
28+
<source.level>1.8</source.level>
2729
</properties>
2830

2931
<dependencies>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>org.springframework.data</groupId>
7+
<artifactId>spring-data-rest-tests</artifactId>
8+
<version>2.5.0.BUILD-SNAPSHOT</version>
9+
</parent>
10+
11+
<name>Spring Data REST Tests - Shop</name>
12+
<artifactId>spring-data-rest-tests-shop</artifactId>
13+
14+
<dependencies>
15+
16+
<dependency>
17+
<groupId>${project.groupId}</groupId>
18+
<artifactId>spring-data-rest-tests-core</artifactId>
19+
<version>${project.version}</version>
20+
<type>test-jar</type>
21+
</dependency>
22+
23+
<dependency>
24+
<groupId>org.springframework.data</groupId>
25+
<artifactId>spring-data-keyvalue</artifactId>
26+
<version>${springdata.keyvalue}</version>
27+
</dependency>
28+
29+
</dependencies>
30+
31+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import lombok.Data;
19+
import lombok.RequiredArgsConstructor;
20+
21+
import java.util.UUID;
22+
23+
import org.springframework.data.annotation.Id;
24+
25+
/**
26+
* @author Oliver Gierke
27+
*/
28+
@Data
29+
@RequiredArgsConstructor
30+
public class Address {
31+
32+
private @Id UUID id = UUID.randomUUID();
33+
private final String street, zipCode, city, state;
34+
35+
/*
36+
* (non-Javadoc)
37+
* @see java.lang.Object#toString()
38+
*/
39+
public String toString() {
40+
return String.format("%s, %s %s, %s", street, zipCode, city, state);
41+
}
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import lombok.Data;
19+
import lombok.RequiredArgsConstructor;
20+
21+
import java.util.UUID;
22+
23+
import org.springframework.data.annotation.Id;
24+
25+
/**
26+
* @author Oliver Gierke
27+
*/
28+
@Data
29+
@RequiredArgsConstructor
30+
public class Customer {
31+
32+
private final @Id UUID id = UUID.randomUUID();
33+
private final String firstname, lastname;
34+
private final Gender gender;
35+
private final Address address;
36+
37+
static enum Gender {
38+
MALE, FEMALE;
39+
}
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import org.springframework.beans.factory.annotation.Value;
19+
import org.springframework.data.rest.core.config.Projection;
20+
21+
/**
22+
* @author Oliver Gierke
23+
*/
24+
@Projection(name = "excerpt", types = Customer.class)
25+
public interface CustomerExcerpt {
26+
27+
String getFirstname();
28+
29+
String getLastname();
30+
31+
@Value("#{target.address.toString()}")
32+
String getAddress();
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import java.util.UUID;
19+
20+
import org.springframework.data.repository.CrudRepository;
21+
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
22+
23+
/**
24+
* @author Oliver Gierke
25+
*/
26+
@RepositoryRestResource(excerptProjection = CustomerExcerpt.class)
27+
public interface CustomerRepository extends CrudRepository<Customer, UUID> {
28+
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import lombok.Data;
19+
import lombok.EqualsAndHashCode;
20+
21+
import java.math.BigDecimal;
22+
import java.util.Arrays;
23+
import java.util.List;
24+
import java.util.UUID;
25+
26+
import org.springframework.data.annotation.Id;
27+
import org.springframework.data.annotation.Reference;
28+
29+
/**
30+
* @author Oliver Gierke
31+
*/
32+
@Data
33+
@EqualsAndHashCode(of = "id")
34+
public class LineItem {
35+
36+
private final @Id UUID id = UUID.randomUUID();
37+
private final String description;
38+
private final BigDecimal price;
39+
40+
private final @Reference Product product;
41+
private final @Reference List<Product> products;
42+
43+
private final @Reference LineItemType type;
44+
private final @Reference List<LineItemType> types;
45+
46+
public LineItem(Product product, LineItemType type) {
47+
48+
this.price = product.getPrice();
49+
this.description = product.getName();
50+
51+
this.type = type;
52+
this.types = Arrays.asList(type, type);
53+
54+
this.product = product;
55+
this.products = Arrays.asList(product, product);
56+
}
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* Copyright 2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import lombok.EqualsAndHashCode;
19+
import lombok.Getter;
20+
import lombok.RequiredArgsConstructor;
21+
import lombok.ToString;
22+
23+
import java.util.UUID;
24+
25+
import org.springframework.data.annotation.Id;
26+
27+
/**
28+
* @author Oliver Gierke
29+
*/
30+
@Getter
31+
@EqualsAndHashCode(of = "id")
32+
@ToString
33+
@RequiredArgsConstructor
34+
public class LineItemType {
35+
36+
private final @Id UUID id = UUID.randomUUID();
37+
private final String name;
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright 2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import java.util.Optional;
19+
import java.util.UUID;
20+
21+
import org.springframework.data.repository.CrudRepository;
22+
23+
/**
24+
* @author Oliver Gierke
25+
*/
26+
public interface LineItemTypeRepository extends CrudRepository<LineItemType, UUID> {
27+
28+
Optional<LineItemType> findByName(String name);
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import lombok.Value;
19+
20+
import java.util.ArrayList;
21+
import java.util.List;
22+
import java.util.UUID;
23+
24+
import org.springframework.data.annotation.Id;
25+
import org.springframework.data.annotation.Reference;
26+
27+
/**
28+
* @author Oliver Gierke
29+
*/
30+
@Value
31+
public class Order {
32+
33+
private final @Id UUID id = UUID.randomUUID();
34+
private final List<LineItem> items = new ArrayList<>();
35+
private final @Reference Customer customer;
36+
37+
public Order add(LineItem item) {
38+
39+
this.items.add(item);
40+
return this;
41+
}
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright 2014-2016 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.rest.tests.shop;
17+
18+
import java.util.UUID;
19+
20+
import org.springframework.data.repository.CrudRepository;
21+
22+
/**
23+
* @author Oliver Gierke
24+
*/
25+
public interface OrderRepository extends CrudRepository<Order, UUID> {
26+
27+
}

0 commit comments

Comments
 (0)