Skip to content

Commit dd4cf26

Browse files
committed
o Added the Mockito dependency
o Switched the IoServiceListenerSupport to Mockito o Modified the ByteArray interfaces to simplify it o Started using Mockito for ByteAccess tests
1 parent 6731bad commit dd4cf26

File tree

8 files changed

+170
-182
lines changed

8 files changed

+170
-182
lines changed

mina-core/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636
<groupId>org.easymock</groupId>
3737
<artifactId>easymock</artifactId>
3838
</dependency>
39+
40+
<dependency>
41+
<groupId>org.mockito</groupId>
42+
<artifactId>mockito-core</artifactId>
43+
</dependency>
44+
3945
</dependencies>
4046

4147
<build>

mina-core/src/main/java/org/apache/mina/core/service/IoServiceListenerSupport.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,11 @@ public void fireSessionCreated(IoSession session) {
215215

216216
// Fire session events.
217217
IoFilterChain filterChain = session.getFilterChain();
218+
219+
// Should call handler.sessionCreated()
218220
filterChain.fireSessionCreated();
221+
222+
// Should call handler.sessionOpened()
219223
filterChain.fireSessionOpened();
220224

221225
int managedSessionCount = managedSessions.size();
@@ -227,9 +231,9 @@ public void fireSessionCreated(IoSession session) {
227231
cumulativeManagedSessionCount.incrementAndGet();
228232

229233
// Fire listener events.
230-
for (IoServiceListener l : listeners) {
234+
for (IoServiceListener listener : listeners) {
231235
try {
232-
l.sessionCreated(session);
236+
listener.sessionCreated(session);
233237
} catch (Exception e) {
234238
ExceptionMonitor.getInstance().exceptionCaught(e);
235239
}

mina-core/src/main/java/org/apache/mina/util/byteaccess/ByteArray.java

+4-26
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,19 @@
3030
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
3131
*/
3232
public interface ByteArray extends IoAbsoluteReader, IoAbsoluteWriter {
33-
3433
/**
35-
* {@inheritDoc}
34+
* @return the index of the first byte that can be accessed.
3635
*/
37-
@Override
3836
int first();
3937

4038
/**
41-
* {@inheritDoc}
39+
* @return the index after the last byte that can be accessed.
4240
*/
43-
@Override
4441
int last();
45-
42+
4643
/**
47-
* {@inheritDoc}
44+
* @return the order of the bytes.
4845
*/
49-
@Override
5046
ByteOrder order();
5147

5248
/**
@@ -88,24 +84,6 @@ public interface ByteArray extends IoAbsoluteReader, IoAbsoluteWriter {
8884
@Override
8985
boolean equals(Object other);
9086

91-
/**
92-
* {@inheritDoc}
93-
*/
94-
@Override
95-
byte get(int index);
96-
97-
/**
98-
* {@inheritDoc}
99-
*/
100-
@Override
101-
void get(int index, IoBuffer bb);
102-
103-
/**
104-
* {@inheritDoc}
105-
*/
106-
@Override
107-
int getInt(int index);
108-
10987
/**
11088
* @return a cursor starting at index 0 (which may not be the start of the array).
11189
*/

mina-core/src/main/java/org/apache/mina/util/byteaccess/IoAbsoluteReader.java

-18
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
*/
2020
package org.apache.mina.util.byteaccess;
2121

22-
import java.nio.ByteOrder;
23-
2422
import org.apache.mina.core.buffer.IoBuffer;
2523

2624
/**
@@ -29,17 +27,6 @@
2927
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
3028
*/
3129
public interface IoAbsoluteReader {
32-
33-
/**
34-
* @return the index of the first byte that can be accessed.
35-
*/
36-
int first();
37-
38-
/**
39-
* @return the index after the last byte that can be accessed.
40-
*/
41-
int last();
42-
4330
/**
4431
* @return the total number of bytes that can be accessed.
4532
*/
@@ -54,11 +41,6 @@ public interface IoAbsoluteReader {
5441
*/
5542
ByteArray slice(int index, int length);
5643

57-
/**
58-
* @return the order of the bytes.
59-
*/
60-
ByteOrder order();
61-
6244
/**
6345
* @param index The starting position
6446
* @return a <code>byte</code> from the given index.

mina-core/src/main/java/org/apache/mina/util/byteaccess/IoAbsoluteWriter.java

-18
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
*/
2020
package org.apache.mina.util.byteaccess;
2121

22-
import java.nio.ByteOrder;
23-
2422
import org.apache.mina.core.buffer.IoBuffer;
2523

2624
/**
@@ -29,22 +27,6 @@
2927
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
3028
*/
3129
public interface IoAbsoluteWriter {
32-
33-
/**
34-
* @return the index of the first byte that can be accessed.
35-
*/
36-
int first();
37-
38-
/**
39-
* @return the index after the last byte that can be accessed.
40-
*/
41-
int last();
42-
43-
/**
44-
* @return the order of the bytes.
45-
*/
46-
ByteOrder order();
47-
4830
/**
4931
* Puts a <code>byte</code> at the given index.
5032
*

0 commit comments

Comments
 (0)