/**
* Copyright 2001-2010 the original author or authors.
*
* Licensed 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.easymock.samples;
/**
* @author OFFIS, Tammo Freese
*/
import static org.easymock.EasyMock.*;
import static org.junit.Assert.*;
import java.util.ArrayList;
import java.util.List;
import org.easymock.IAnswer;
import org.junit.Before;
import org.junit.Test;
public class ExampleTest {
private ClassTested classUnderTest;
private Collaborator mock;
@Before
public void setup() {
mock = createMock(Collaborator.class);
classUnderTest = new ClassTested();
classUnderTest.addListener(mock);
}
@Test
public void removeNonExistingDocument() {
replay(mock);
classUnderTest.removeDocument("Does not exist");
}
@Test
public void addDocument() {
mock.documentAdded("New Document");
replay(mock);
classUnderTest.addDocument("New Document", new byte[0]);
verify(mock);
}
@Test
public void addAndChangeDocument() {
mock.documentAdded("Document");
mock.documentChanged("Document");
expectLastCall().times(3);
replay(mock);
classUnderTest.addDocument("Document", new byte[0]);
classUnderTest.addDocument("Document", new byte[0]);
classUnderTest.addDocument("Document", new byte[0]);
classUnderTest.addDocument("Document", new byte[0]);
verify(mock);
}
@Test
public void voteForRemoval() {
// expect document addition
mock.documentAdded("Document");
// expect to be asked to vote, and vote for it
expect(mock.voteForRemoval("Document")).andReturn((byte) 42);
// expect document removal
mock.documentRemoved("Document");
replay(mock);
classUnderTest.addDocument("Document", new byte[0]);
assertTrue(classUnderTest.removeDocument("Document"));
verify(mock);
}
@Test
public void voteAgainstRemoval() {
// expect document addition
mock.documentAdded("Document");
// expect to be asked to vote, and vote against it
expect(mock.voteForRemoval("Document")).andReturn((byte) -42); //
// document removal is *not* expected
replay(mock);
classUnderTest.addDocument("Document", new byte[0]);
assertFalse(classUnderTest.removeDocument("Document"));
verify(mock);
}
@Test
public void voteForRemovals() {
mock.documentAdded("Document 1");
mock.documentAdded("Document 2");
expect(mock.voteForRemovals("Document 1", "Document 2")).andReturn((byte) 42);
mock.documentRemoved("Document 1");
mock.documentRemoved("Document 2");
replay(mock);
classUnderTest.addDocument("Document 1", new byte[0]);
classUnderTest.addDocument("Document 2", new byte[0]);
assertTrue(classUnderTest.removeDocuments(new String[] { "Document 1", "Document 2" }));
verify(mock);
}
@Test
public void voteAgainstRemovals() {
mock.documentAdded("Document 1");
mock.documentAdded("Document 2");
expect(mock.voteForRemovals("Document 1", "Document 2")).andReturn((byte) -42);
replay(mock);
classUnderTest.addDocument("Document 1", new byte[0]);
classUnderTest.addDocument("Document 2", new byte[0]);
assertFalse(classUnderTest.removeDocuments("Document 1", "Document 2"));
verify(mock);
}
@SuppressWarnings("unchecked")
@Test
public void answerVsDelegate() {
final List<String> l = createMock(List.class);
// andAnswer style
expect(l.remove(10)).andAnswer(new IAnswer<String>() {
public String answer() throws Throwable {
return getCurrentArguments()[0].toString();
}
});
// andDelegateTo style
expect(l.remove(10)).andDelegateTo(new ArrayList<String>() {
private static final long serialVersionUID = 1L;
@Override
public String remove(final int index) {
return Integer.toString(index);
}
});
replay(l);
assertEquals("10", l.remove(10));
assertEquals("10", l.remove(10));
verify(l);
}
}
|