Skip to content

Commit a1016c7

Browse files
committed
Fixed broken tests after adding new FacesConfig.ContextParam enum
jakartaee/faces#1416
1 parent 3144516 commit a1016c7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

impl/src/test/java/com/sun/faces/el/ELUtilsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ public URL getResource(String path) {
4646
"com.sun.faces.mock.MockRenderKitFactory");
4747

4848
new FacesContextImpl(externalContext, new LifecycleImpl());
49+
FacesContext.getCurrentInstance().getAttributes().put(RIConstants.CDI_BEAN_MANAGER, new MockBeanManager());
4950
new ApplicationImpl();
5051

5152
applicationAssociate = (ApplicationAssociate) externalContext.getApplicationMap()
5253
.get(RIConstants.FACES_PREFIX + "ApplicationAssociate");
5354

54-
FacesContext.getCurrentInstance().getAttributes().put(RIConstants.CDI_BEAN_MANAGER, new MockBeanManager());
5555
}
5656

5757
@Test

impl/src/test/java/com/sun/faces/mock/MockBeanManager.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
package com.sun.faces.mock;
1818

19+
import static java.util.Collections.emptySet;
20+
1921
import java.lang.annotation.Annotation;
2022
import java.lang.reflect.Type;
2123
import java.util.List;
@@ -71,12 +73,12 @@ public <T> CreationalContext<T> createCreationalContext(Contextual<T> contextual
7173

7274
@Override
7375
public Set<Bean<?>> getBeans(Type beanType, Annotation... qualifiers) {
74-
return null;
76+
return emptySet();
7577
}
7678

7779
@Override
7880
public Set<Bean<?>> getBeans(String name) {
79-
return null;
81+
return emptySet();
8082
}
8183

8284
@Override
@@ -156,12 +158,12 @@ public boolean isPassivatingScope(Class<? extends Annotation> annotationType) {
156158

157159
@Override
158160
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
159-
return null;
161+
return emptySet();
160162
}
161163

162164
@Override
163165
public Set<Annotation> getStereotypeDefinition(Class<? extends Annotation> stereotype) {
164-
return null;
166+
return emptySet();
165167
}
166168

167169
@Override

impl/src/test/java/com/sun/faces/mock/MockFacesContext.java

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import java.util.Locale;
2525
import java.util.Map;
2626

27+
import com.sun.faces.RIConstants;
2728
import com.sun.faces.context.ExceptionHandlerFactoryImpl;
2829
import com.sun.faces.renderkit.RenderKitUtils;
2930

@@ -62,6 +63,7 @@ public class MockFacesContext extends FacesContext {
6263
public MockFacesContext() {
6364
super();
6465
setCurrentInstance(this);
66+
getAttributes().put(RIConstants.CDI_BEAN_MANAGER, new MockBeanManager());
6567
}
6668

6769
public MockFacesContext(ExternalContext externalContext) {

0 commit comments

Comments
 (0)