Giter VIP home page Giter VIP logo

Comments (5)

jbl428 avatar jbl428 commented on September 25, 2024 1

I have tried your solution. but i think it does not work.

sample code repo: null-inject-test branch

	@Data
	public static class JetBrainAnnotationObject {
		@org.jetbrains.annotations.NotNull
		private String value;

		@ConstructorProperties({"value"})
		public JetBrainAnnotationObject(String value) {
			this.value = value;
		}
	}
FixtureMonkeyTestSpecs.JetBrainAnnotationObject jetBrainAnnotationObject = FixtureMonkey.builder()
	.objectIntrospector(ConstructorPropertiesArbitraryIntrospector.INSTANCE)
	.pushNullInjectGenerator(
		new MatcherOperator<>(
			property -> {
				boolean present = property.getAnnotation(NotNull.class).isPresent();
				return present;
			},
			context -> NOT_NULL_INJECT
		)
	)
	.build()
	.giveMeOne(FixtureMonkeyTestSpecs.JetBrainAnnotationObject.class);

If i check the result of property.getAnnotation(NotNull.class).isPresent(); it is always false.
property does not have jetbrain @NotNull annotation in annotationMap.

CleanShot 2023-05-27 at 09 31 01@2x

from fixture-monkey.

seongahjo avatar seongahjo commented on September 25, 2024 1

@jbl428
Yes, it sounds great.
If you don't mind, could you make a PR for removing annotations whose retention policy is CLASS in DefaultNullInjectGenerator?
It would be very helpful.

from fixture-monkey.

seongahjo avatar seongahjo commented on September 25, 2024

@jbl428
Hello, I think you'd better to use pushNullInjectGenerator option.

You could use this option as below.

.pushNullInjectGenerator(
	new MatcherOperator<>(
		property -> property.getAnnotation(NotNull.class).isPresent(),
		context -> NOT_NULL_INJECT
	)
)

It would be worked for all properties have @NotNull.
If you have any more questions, please feel free to ask.

from fixture-monkey.

seongahjo avatar seongahjo commented on September 25, 2024

@jbl428
As I know, @org.jetbrains.annotations.NotNull is an annotation for IntelliJ IDEA's static analysis, not for validation.
Due to its purpose, It could not be captured in runtime.

I think It is better to use Bean Validation annotations.
Are there any reasons for using @org.jetbrains.annotations.NotNull instead of Bean Validation annotations?

from fixture-monkey.

jbl428 avatar jbl428 commented on September 25, 2024

@seongahjo
My project is written in Java for the entity classes and uses kotiln for the business logic.
To take advantage of kotiln's null safety, each entity's properties must be annotated to satisfy JSR305 (like @org.jetbrains.annotations.NotNull)

I found that org.springframework.lang.NonNull is another jsr305 compliant annotation and the retention policy is RUNTIME, so I could use this annotation.

My suggestion is to remove annotations whose retention policy is CLASS in DefaultNullInjectGenerator.
What do you think?

from fixture-monkey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.