Fixture Monkey is designed to generate controllable arbitrary instances easily. It allows you to reuse same configurations of the instances in several tests.
You can write countless tests including edge cases by only one instance of the FixtureMonkey type. You can generate instances of complex types automatically and set fields with values from builders of the ArbitraryBuilder type. The well-defined builders could be reused in any tests. Writing integration tests is easier with Fixture Monkey.
Each primitive type property is generated by Jqwik
- JDK 1.8 or higher
- Jqwik 1.7.3
- Kotlin 1.8 or higher
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter:0.6.3")
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:0.6.3")
<dependency>
<groupId>com.navercorp.fixturemonkey</groupId>
<artifactId>fixture-monkey-starter</artifactId>
<version>0.6.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.navercorp.fixturemonkey</groupId>
<artifactId>fixture-monkey-starter-kotlin</artifactId>
<version>0.6.3</version>
<scope>test</scope>
</dependency>
Add "lombok.anyConstructor.addConstructorProperties=true" in lombok.config
@Value
public class Order {
Long id;
String orderNo;
String productName;
int quantity;
long price;
List<String> items;
Instant orderedAt;
}
@Test
void sampleOrder() {
// given
FixtureMonkey sut = FixtureMonkey.builder()
.objectIntrospector(ConstructorPropertiesArbitraryIntrospector.INSTANCE)
.build();
// when
Order actual = sut.giveMeBuilder(Order.class)
.set("orderNo", "1")
.set("productName", "Line Sally")
.minSize("items", 1)
.sample();
// then
then(actual.getOrderNo()).isEqualTo("1");
then(actual.getProductName()).isEqualTo("Line Sally");
then(actual.getItems()).hasSizeGreaterThanOrEqualTo(1);
}
data class Order (
val id: Long,
val orderNo: String,
val productName: String,
val quantity: Int,
val price: Long,
val items: List<String>,
val orderedAt: Instant
)
@Test
fun sampleOrder() {
// given
val sut = FixtureMonkey.builder()
.plugin(KotlinPlugin())
.build()
// when
val actual = sut.giveMeBuilder<Order>()
.setExp(Order::orderNo, "1")
.setExp(Order::productName, "Line Sally")
.minSizeExp(Order::items, 1)
.sample()
// then
then(actual.orderNo).isEqualTo("1")
then(actual.productName).isEqualTo("Line Sally")
then(actual.items).hasSizeGreaterThanOrEqualTo(1)
}
- FixtureMonkey Helper
- IntelliJ plugin that makes it easier to use Fixture Monkey string expressions & Kotlin DSL
- 🐒 ah.jo
- 🐒 mhyeon-lee
- 🐒 acktsap
- 🐒 benelog
- 🐒 jwChung
- 🐒 SooKim1110
- @KoEonYack
- @G-ONL
- @imbyungjun
- @sandrawangyx
- @dbgsprw
- @kshired
- @ByungjunYou
- @esfomeado
- @yn-jn-j
- @jongwooo
- @doljae
- @jbl428
- @sangy515
- @yunseok-jeong0
- @wicksome
- fixure monkey로 예외 발생 테스트
- 테스트 객체를 더쉽게 만들어보자, Fixture-monkey
- Junit Test with Fixture Monkey
- Fixture monkey
- 테스트 데이터도구 - Fixture Monkey
- Fixture Monkey란?
Welcome to write articles about Fixture Monkey!
Copyright 2021-present NAVER Corp.
Licensed 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.