Git Product home page Git Product logo

Comments (4)

codecholeric avatar codecholeric commented on September 25, 2024

Sure it's possible. The fluent API has at the moment no predefined way to express this, but there are a couple of different ways, to customize this, depending on what you want to emphasize. For example, if you want to express, that fields should not be annotated with @OneToMany(fetch = EAGER), you could do it the following way:

import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.no;

@ArchTest
public static final ArchRule entitiesShouldntFetchEager =
        no(fields()).should(beAnnotatedWithOneToManyFetchingEager());

private static ClassesTransformer<JavaField> fields() {
    return new AbstractClassesTransformer<JavaField>("fields") {
        @Override
        public Iterable<JavaField> doTransform(JavaClasses collection) {
            Set<JavaField> result = new HashSet<>();
            for (JavaClass javaClass : collection) {
                result.addAll(javaClass.getFields());
            }
            return result;
        }
    };
}

private static ArchCondition<JavaField> beAnnotatedWithOneToManyFetchingEager() {
    return new ArchCondition<JavaField>("be annotated with @OneToMany(fetch = EAGER)") {
        @Override
        public void check(JavaField field, ConditionEvents events) {
            Optional<OneToMany> oneToMany = field.tryGetAnnotationOfType(OneToMany.class);
            boolean satisfied = oneToMany.isPresent() && oneToMany.get().fetch() == FetchType.EAGER;
            String message = String.format("Field %s.%s is%s annotated with @OneToMany(fetch = EAGER)",
                    field.getOwner().getName(), field.getName(), satisfied ? "" : " not");
            events.add(new SimpleConditionEvent(field, satisfied, message));
        }
    };
}

I plan to extend the fluent API in the future, so you get support like noFields().that()..., but at the moment you need the customized code (you could also write something like noClasses().should(customConditionToCheckFields))
Does this help you?

from archunit.

codecholeric avatar codecholeric commented on September 25, 2024

Were you able to solve your problem? If yes, I could close this issue 😉

from archunit.

sal2row avatar sal2row commented on September 25, 2024

Yes mate,
sorry for the gap, I've been off work and catching up afterwards.
your example worked it out nice and smooth, you may close the issue and thanks a lot for the prompt reply!

from archunit.

codecholeric avatar codecholeric commented on September 25, 2024

No problem, happy that your problem was solved, I'll see, that at least the fields() ClassesTransformer of the example will be part of the provided fluent API with the next version 😃
(the full fluent API for fields, methods, constructors is probably out of scope for me, at the moment)

from archunit.

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.