当前位置: 首页>>代码示例>>Java>>正文


Java Validator类代码示例

本文整理汇总了Java中com.openpojo.validation.Validator的典型用法代码示例。如果您正苦于以下问题:Java Validator类的具体用法?Java Validator怎么用?Java Validator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Validator类属于com.openpojo.validation包,在下文中一共展示了Validator类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
    public void testPojoStructureAndBehavior() {
        final Validator validator = ValidatorBuilder.create()
                // Add Rules to validate structure for POJO_PACKAGE
                // See com.openpojo.validation.rule.impl for more ...
//                .with(new GetterMustExistRule())
//                .with(new SetterMustExistRule())
                .with(new NoFieldShadowingRule())
                // Add Testers to validate behaviour for POJO_PACKAGE
                // See com.openpojo.validation.test.impl for more ...
//                .with(new SetterTester())
//                .with(new GetterTester())
                .build();

        final List<PojoClass> pojoClasses = new ArrayList<>();
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core",
                new FilterClassName("\\w*PaymentRequest\\w*$")));
        validator.validate(pojoClasses);    }
 
开发者ID:Adyen,项目名称:adyen-android,代码行数:19,代码来源:PaymentRequestUnitTest.java

示例2: test_pojo_structure_and_behavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void test_pojo_structure_and_behavior() {

    List<Class> classes = Lists.newArrayList(
            AuthData.class,
            AuthMfaDevice.class,
            AuthResponse.class
    );

    List<PojoClass> pojoClasses = classes.stream().map(PojoClassFactory::getPojoClass).collect(Collectors.toList());

    Validator validator = ValidatorBuilder.create()
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate(pojoClasses);
}
 
开发者ID:Nike-Inc,项目名称:cerberus-management-service,代码行数:21,代码来源:AuthConnectorPojoTest.java

示例3: test_pojo_structure_and_behavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void test_pojo_structure_and_behavior() {

    List<Class> classes = Lists.newArrayList(
            CreateSessionLoginTokenRequest.class,
            CreateSessionLoginTokenResponse.class,
            GenerateTokenRequest.class,
            GenerateTokenResponse.class,
            GenerateTokenResponseData.class,
            GetUserResponse.class,
            MfaDevice.class,
            ResponseStatus.class,
            SessionLoginTokenData.class,
            SessionUser.class,
            UserData.class,
            VerifyFactorRequest.class,
            VerifyFactorResponse.class
    );

    List<PojoClass> pojoClasses = classes.stream().map(PojoClassFactory::getPojoClass).collect(Collectors.toList());

    Validator validator = ValidatorBuilder.create()
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate(pojoClasses);
}
 
开发者ID:Nike-Inc,项目名称:cerberus-management-service,代码行数:31,代码来源:OneLoginPojoTest.java

示例4: test_pojo_structure_and_behavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void test_pojo_structure_and_behavior() {

    List<PojoClass> pojoClasses = PojoClassFactory.getPojoClasses("com.nike.cerberus.record");

    Assert.assertEquals(10, pojoClasses.size());

    Validator validator = ValidatorBuilder.create()
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate(pojoClasses);
}
 
开发者ID:Nike-Inc,项目名称:cerberus-management-service,代码行数:17,代码来源:RecordPojoTest.java

示例5: test_pojo_structure_and_behavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void test_pojo_structure_and_behavior() {

    List<PojoClass> pojoClasses = PojoClassFactory.getPojoClasses("com.nike.cerberus.domain");

    // exclude this class because it does not need getters and setters for every constructor parameter
    pojoClasses.remove(PojoClassFactory.getPojoClass(AssetResourceFile.class));

    Assert.assertEquals(19, pojoClasses.size());

    Validator validator = ValidatorBuilder.create()
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate(pojoClasses);
}
 
开发者ID:Nike-Inc,项目名称:cerberus-management-service,代码行数:20,代码来源:DomainPojoTest.java

示例6: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void testPojoStructureAndBehavior() {
    Validator validator = ValidatorBuilder.create()
            // Add Rules to validate structure for POJO_PACKAGE
            // See com.openpojo.validation.rule.impl for more ...
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            // Add Testers to validate behaviour for POJO_PACKAGE
            // See com.openpojo.validation.test.impl for more ...
            .with(new SetterTester())
            .with(new GetterTester())
            // Static fields must be final
            .with(new NoStaticExceptFinalRule())
            // Don't shadow parent's field names.
            .with(new NoFieldShadowingRule())
            // What about public fields, use one of the following rules
            // allow them only if they are static and final.
            .with(new NoPublicFieldsExceptStaticFinalRule())
            .build();

    validator.validate(POJO_PACKAGE, filter);
}
 
开发者ID:microservices-demo,项目名称:shipping,代码行数:23,代码来源:UnitPojo.java

示例7: should_only_have_get_correct_pojo_in_bean_package

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void should_only_have_get_correct_pojo_in_bean_package() {
    Validator validator = create()
            // Add Rules to validate structure for POJO_PACKAGE
            // See com.openpojo.validation.rule.impl for more ...
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new NoPublicFieldsExceptStaticFinalRule())
            .with(new NoFieldShadowingRule())
            // Add Testers to validate behaviour for POJO_PACKAGE
            // See com.openpojo.validation.test.impl for more ...
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate(POJO_PACKAGE, new FilterPackageInfo());
}
 
开发者ID:Eulbobo,项目名称:java-samples,代码行数:18,代码来源:PojoTest.java

示例8: beanSimple_should_be_a_correct_pojo

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void beanSimple_should_be_a_correct_pojo() {
    Validator validator = create()
            // Add Rules to validate structure for POJO_PACKAGE
            // See com.openpojo.validation.rule.impl for more ...
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new NoPublicFieldsExceptStaticFinalRule())
            .with(new NoFieldShadowingRule())
            // Add Testers to validate behaviour for POJO_PACKAGE
            // See com.openpojo.validation.test.impl for more ...
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate(PojoClassFactory.getPojoClass(BeanSimple.class));
}
 
开发者ID:Eulbobo,项目名称:java-samples,代码行数:18,代码来源:PojoTest.java

示例9: userBean_should_be_a_correct_bean

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void userBean_should_be_a_correct_bean() {
    Validator validator = create()
            // Add Rules to validate structure for POJO_PACKAGE
            // See com.openpojo.validation.rule.impl for more ...
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            .with(new NoPublicFieldsExceptStaticFinalRule())
            .with(new NoFieldShadowingRule())
            // Add Testers to validate behaviour for POJO_PACKAGE
            // See com.openpojo.validation.test.impl for more ...
            .with(new SetterTester())
            .with(new GetterTester())
            .build();


    validator.validate(PojoClassFactory.getPojoClass(User.class));
}
 
开发者ID:Eulbobo,项目名称:java-samples,代码行数:19,代码来源:PojoTest.java

示例10: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void testPojoStructureAndBehavior() {
	Validator validator = ValidatorBuilder.create()
                          // Add Rules to validate structure for POJO_PACKAGE
                          // See com.openpojo.validation.rule.impl for more ...
                          .with(new GetterMustExistRule())
                          // Add Testers to validate behaviour for POJO_PACKAGE
                          // See com.openpojo.validation.test.impl for more ...
                          .with(new GetterTester())
                          .with(new DefaultValuesNullTester())
                          .build();
	for (String pojoPackage : POJO_PACKAGE) {
		LOGGER.info("Testing package: {}", pojoPackage);
		validator.validate(pojoPackage, new FilterPackageInfo());
	}
}
 
开发者ID:phenopolis,项目名称:pheno4j,代码行数:17,代码来源:PojoTest.java

示例11: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
    public void testPojoStructureAndBehavior() {
        final Validator validator = ValidatorBuilder.create()
                // Add Rules to validate structure for POJO_PACKAGE
                // See com.openpojo.validation.rule.impl for more ...
//                .with(new GetterMustExistRule())
//                .with(new SetterMustExistRule())
                .with(new NoFieldShadowingRule())

                // Add Testers to validate behaviour for POJO_PACKAGE
                // See com.openpojo.validation.test.impl for more ...
                .with(new SetterTester())
                .with(new GetterTester())
                .build();


        final List<PojoClass> pojoClasses = new ArrayList<>();
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*HttpClient\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*PaymentTrigger\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*TokenHttpClient\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*ModularPaymentMethods\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*ModuleAvailabilityUtil\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*PaymentMethodServiceFactory\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.internals",
                new FilterClassName("\\w*InputFieldsServiceFactory\\w*$")));


        validator.validate(pojoClasses);
    }
 
开发者ID:Adyen,项目名称:adyen-android,代码行数:36,代码来源:InternalsUnitTest.java

示例12: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void testPojoStructureAndBehavior() {
    Validator validator = ValidatorBuilder.create()
            // Add Rules to validate structure for POJO_PACKAGE
            // See com.openpojo.validation.rule.impl for more ...
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            // Add Testers to validate behaviour for POJO_PACKAGE
            // See com.openpojo.validation.test.impl for more ...
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate("com.adyen.core.exceptions", new FilterPackageInfo());
}
 
开发者ID:Adyen,项目名称:adyen-android,代码行数:16,代码来源:ExceptionsUnitTest.java

示例13: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
public void testPojoStructureAndBehavior() {
    Validator validator = ValidatorBuilder.create()
            // Add Rules to validate structure for POJO_PACKAGE
            // See com.openpojo.validation.rule.impl for more ...
            .with(new GetterMustExistRule())
            .with(new SetterMustExistRule())
            // Add Testers to validate behaviour for POJO_PACKAGE
            // See com.openpojo.validation.test.impl for more ...
            .with(new SetterTester())
            .with(new GetterTester())
            .build();

    validator.validate("com.adyen.core.interfaces", new FilterPackageInfo());
}
 
开发者ID:Adyen,项目名称:adyen-android,代码行数:16,代码来源:InterfacesUnitTest.java

示例14: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Test
    public void testPojoStructureAndBehavior() {
        Validator validator = ValidatorBuilder.create()
                // Add Rules to validate structure for POJO_PACKAGE
                // See com.openpojo.validation.rule.impl for more ...
//                .with(new GetterMustExistRule())
//                .with(new SetterMustExistRule())
                // Add Testers to validate behaviour for POJO_PACKAGE
                // See com.openpojo.validation.test.impl for more ...
                .with(new SetterTester())
                .with(new GetterTester())
                .build();

        final List<PojoClass> pojoClasses = new ArrayList<>();
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.utils",
                new FilterClassName("\\w*AdyenRedirectHandlerActivity\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.utils",
                new FilterClassName("\\w*AmountUtil\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.utils",
                new FilterClassName("\\w*AsyncHttpClient\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.utils",
                new FilterClassName("\\w*AsyncImageDownloader\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.utils",
                new FilterClassName("\\w*PaymentResponse\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.utils",
                new FilterClassName("\\w*ValidatorUtil\\w*$")));


        validator.validate(pojoClasses);
    }
 
开发者ID:Adyen,项目名称:adyen-android,代码行数:31,代码来源:UtilsUnitTest.java

示例15: testPojoStructureAndBehavior

import com.openpojo.validation.Validator; //导入依赖的package包/类
@Ignore @Test
    public void testPojoStructureAndBehavior() {

        Validator validator = ValidatorBuilder.create()
                // Add Rules to validate structure for POJO_PACKAGE
                // See com.openpojo.validation.rule.impl for more ...
//                .with(new GetterMustExistRule())
//                .with(new SetterMustExistRule())
                // Add Testers to validate behaviour for POJO_PACKAGE
                // See com.openpojo.validation.test.impl for more ...
                .with(new SetterTester())
                .with(new GetterTester())
                .build();

        final List<PojoClass> pojoClasses = new ArrayList<>();
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.models",
                new FilterClassName("\\w*Issuer\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.models",
                new FilterClassName("\\w*PaymentRequestResult\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.models",
                new FilterClassName("\\w*PaymentMethod\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.models",
                new FilterClassName("\\w*Amount\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.models",
                new FilterClassName("\\w*Payment\\w*$")));
        pojoClasses.addAll(PojoClassFactory.getPojoClassesRecursively("com.adyen.core.models",
                new FilterClassName("\\w*PaymentModule\\w*$")));
        validator.validate(pojoClasses);

    }
 
开发者ID:Adyen,项目名称:adyen-android,代码行数:31,代码来源:ModelsUnitTest.java


注:本文中的com.openpojo.validation.Validator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。