12
12
import org .mockito .internal .creation .MockSettingsImpl ;
13
13
import org .mockito .plugins .MockMaker ;
14
14
15
+ import java .io .Serializable ;
15
16
import java .lang .annotation .Retention ;
16
17
import java .lang .annotation .RetentionPolicy ;
17
18
import java .util .Observable ;
@@ -79,9 +80,8 @@ public void is_type_mockable_give_empty_reason_if_type_is_mockable() {
79
80
}
80
81
81
82
@ Test
82
- public void mock_type_with_annotations () throws Exception {
83
- MockSettingsImpl <ClassWithAnnotation > mockSettings =
84
- new MockSettingsImpl <ClassWithAnnotation >();
83
+ public void mock_class_with_annotations () throws Exception {
84
+ MockSettingsImpl <ClassWithAnnotation > mockSettings = new MockSettingsImpl <>();
85
85
mockSettings .setTypeToMock (ClassWithAnnotation .class );
86
86
87
87
ClassWithAnnotation proxy = mockMaker .createMock (mockSettings , dummyHandler ());
@@ -102,10 +102,79 @@ public void mock_type_with_annotations() throws Exception {
102
102
.isEqualTo ("bar" );
103
103
}
104
104
105
+ @ Test
106
+ public void mock_class_with_annotations_with_additional_interface () throws Exception {
107
+ MockSettingsImpl <ClassWithAnnotation > mockSettings = new MockSettingsImpl <>();
108
+ mockSettings .setTypeToMock (ClassWithAnnotation .class );
109
+ mockSettings .extraInterfaces (Serializable .class );
110
+
111
+ ClassWithAnnotation proxy = mockMaker .createMock (mockSettings , dummyHandler ());
112
+
113
+ assertThat (proxy .getClass ().isAnnotationPresent (SampleAnnotation .class )).isTrue ();
114
+ assertThat (proxy .getClass ().getAnnotation (SampleAnnotation .class ).value ()).isEqualTo ("foo" );
115
+
116
+ assertThat (
117
+ proxy .getClass ()
118
+ .getMethod ("sampleMethod" )
119
+ .isAnnotationPresent (SampleAnnotation .class ))
120
+ .isTrue ();
121
+ assertThat (
122
+ proxy .getClass ()
123
+ .getMethod ("sampleMethod" )
124
+ .getAnnotation (SampleAnnotation .class )
125
+ .value ())
126
+ .isEqualTo ("bar" );
127
+ }
128
+
129
+ @ Test
130
+ public void mock_interface_with_annotations () throws Exception {
131
+ MockSettingsImpl <InterfaceWithAnnotation > mockSettings = new MockSettingsImpl <>();
132
+ mockSettings .setTypeToMock (InterfaceWithAnnotation .class );
133
+
134
+ InterfaceWithAnnotation proxy = mockMaker .createMock (mockSettings , dummyHandler ());
135
+
136
+ assertThat (proxy .getClass ().isAnnotationPresent (SampleAnnotation .class )).isTrue ();
137
+ assertThat (proxy .getClass ().getAnnotation (SampleAnnotation .class ).value ()).isEqualTo ("foo" );
138
+
139
+ assertThat (
140
+ proxy .getClass ()
141
+ .getMethod ("sampleMethod" )
142
+ .isAnnotationPresent (SampleAnnotation .class ))
143
+ .isTrue ();
144
+ assertThat (
145
+ proxy .getClass ()
146
+ .getMethod ("sampleMethod" )
147
+ .getAnnotation (SampleAnnotation .class )
148
+ .value ())
149
+ .isEqualTo ("bar" );
150
+ }
151
+
152
+ @ Test
153
+ public void mock_interface_with_annotations_with_additional_interface () throws Exception {
154
+ MockSettingsImpl <InterfaceWithAnnotation > mockSettings = new MockSettingsImpl <>();
155
+ mockSettings .setTypeToMock (InterfaceWithAnnotation .class );
156
+ mockSettings .extraInterfaces (Serializable .class );
157
+
158
+ InterfaceWithAnnotation proxy = mockMaker .createMock (mockSettings , dummyHandler ());
159
+
160
+ assertThat (proxy .getClass ().isAnnotationPresent (SampleAnnotation .class )).isFalse ();
161
+
162
+ assertThat (
163
+ proxy .getClass ()
164
+ .getMethod ("sampleMethod" )
165
+ .isAnnotationPresent (SampleAnnotation .class ))
166
+ .isTrue ();
167
+ assertThat (
168
+ proxy .getClass ()
169
+ .getMethod ("sampleMethod" )
170
+ .getAnnotation (SampleAnnotation .class )
171
+ .value ())
172
+ .isEqualTo ("bar" );
173
+ }
174
+
105
175
@ Test
106
176
public void mock_type_without_annotations () throws Exception {
107
- MockSettingsImpl <ClassWithAnnotation > mockSettings =
108
- new MockSettingsImpl <ClassWithAnnotation >();
177
+ MockSettingsImpl <ClassWithAnnotation > mockSettings = new MockSettingsImpl <>();
109
178
mockSettings .setTypeToMock (ClassWithAnnotation .class );
110
179
mockSettings .withoutAnnotations ();
111
180
@@ -138,4 +207,11 @@ public void sampleMethod() {
138
207
throw new UnsupportedOperationException ();
139
208
}
140
209
}
210
+
211
+ @ SampleAnnotation ("foo" )
212
+ public interface InterfaceWithAnnotation {
213
+
214
+ @ SampleAnnotation ("bar" )
215
+ void sampleMethod ();
216
+ }
141
217
}
0 commit comments