You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gp...@apache.org on 2009/11/04 13:09:26 UTC

svn commit: r832719 [4/4] - in /myfaces/extensions/validator/branches/branch_for_jsf_1_1: ./ test-modules/ test-modules/base-test-infrastructure/ test-modules/base-test-infrastructure/src/ test-modules/base-test-infrastructure/src/test/ test-modules/ba...

Added: myfaces/extensions/validator/branches/branch_for_jsf_1_1/test-modules/property-validation-tests/src/test/java/org/apache/myfaces/extensions/validator/test/propval/interceptor/RegistrationRendererInterceptorTestCase.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_1_1/test-modules/property-validation-tests/src/test/java/org/apache/myfaces/extensions/validator/test/propval/interceptor/RegistrationRendererInterceptorTestCase.java?rev=832719&view=auto
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_1_1/test-modules/property-validation-tests/src/test/java/org/apache/myfaces/extensions/validator/test/propval/interceptor/RegistrationRendererInterceptorTestCase.java (added)
+++ myfaces/extensions/validator/branches/branch_for_jsf_1_1/test-modules/property-validation-tests/src/test/java/org/apache/myfaces/extensions/validator/test/propval/interceptor/RegistrationRendererInterceptorTestCase.java Wed Nov  4 12:09:24 2009
@@ -0,0 +1,83 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+package org.apache.myfaces.extensions.validator.test.propval.interceptor;
+
+import org.apache.myfaces.extensions.validator.core.ExtValContext;
+import org.apache.myfaces.extensions.validator.core.interceptor.RendererInterceptor;
+import org.apache.myfaces.extensions.validator.core.interceptor.AbstractRendererInterceptor;
+import org.apache.myfaces.extensions.validator.core.interceptor.ValidationInterceptor;
+import org.apache.myfaces.extensions.validator.PropertyValidationInterceptor;
+import org.apache.myfaces.extensions.validator.test.core.AbstractExValCoreTestCase;
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.framework.Assert;
+
+import java.util.List;
+
+public class RegistrationRendererInterceptorTestCase extends AbstractExValCoreTestCase
+{
+    /**
+     * Construct a new instance of the test.
+     *
+     * @param name Name of the test.
+     */
+    public RegistrationRendererInterceptorTestCase(String name)
+    {
+        super(name);
+    }
+
+    public static Test suite()
+    {
+        return new TestSuite(RegistrationRendererInterceptorTestCase.class);
+    }
+
+    @SuppressWarnings({"ConstantConditions"})
+    public void testRendererInterceptorInitialization()
+    {
+        ExtValContext.getContext().registerRendererInterceptor(new TestComponentInitializer());
+        ExtValContext.getContext().registerRendererInterceptor(new TestComponentInitializer1());
+        ExtValContext.getContext().registerRendererInterceptor(new TestComponentInitializer2());
+
+        List<RendererInterceptor> result = ExtValContext.getContext().getRendererInterceptors();
+
+        int resultLength = 4;
+        Assert.assertEquals(resultLength, result.size());
+
+        RendererInterceptor tmp;
+        for(int i = 0; i < resultLength; i++)
+        {
+            tmp = result.get(i);
+            assertTrue(tmp instanceof TestComponentInitializer ||
+                    tmp instanceof ValidationInterceptor ||  /*due to a junit issue*/
+                    tmp instanceof PropertyValidationInterceptor);
+        }
+    }
+
+    class TestComponentInitializer extends AbstractRendererInterceptor
+    {
+    }
+
+    class TestComponentInitializer1 extends TestComponentInitializer
+    {
+    }
+
+    class TestComponentInitializer2 extends TestComponentInitializer
+    {
+    }
+}
\ No newline at end of file