ITコンサルの日常

ITコンサル会社に勤務する普通のITエンジニアの日常です。

Expectations/NonStrictExpectations/StrictExpectationsの違い

Expectations 最低一回は呼ばれる、順番は関係ない
NonStrictExpectations 回数、順番関係なし
StrictExpectations 呼び出し回数と順番がマッチしないとダメ

ということですね。

テスト対象クラス(Hello.java

public class Hello {
	public static String helloStatic() {
		return "helloStatic()";
	}
	
	public String helloInstance1() {
		return "helloInstance1";
	}

	public String helloInstance2() {
		return "helloInstance2";
	}
}

テストクラス(HelloTest.java

import static org.junit.Assert.assertEquals;
import mockit.Expectations;
import mockit.Mocked;
import mockit.NonStrictExpectations;
import mockit.StrictExpectations;
import mockit.integration.junit4.JMockit;

import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(JMockit.class)
public class HelloTest {
	@Mocked
	private Hello hello;
	
	@Test
	public void testHelloExpectations() {
		final String expected1 = "mockedHelloInstance1";
		final String expected2 = "mockedHelloInstance2";
		// 記録フェーズ
		new Expectations() {{
			hello.helloInstance1(); result = expected1;
			hello.helloInstance2(); result = expected2;
		}};
		
		// リプレイフェーズ
		String resultHelloInstance1 = hello.helloInstance1();
		String resultHelloInstance2 = hello.helloInstance2();
		
		// 検証フェーズ
		assertEquals(expected1, resultHelloInstance1);
		assertEquals(expected2, resultHelloInstance2);
	}

	@Test
	public void testHelloExpectationsFail() {
		final String expected1 = "mockedHelloInstance1";
		final String expected2 = "mockedHelloInstance2";
		// 記録フェーズ
		new Expectations() {{
			hello.helloInstance1(); result = expected1;
			hello.helloInstance2(); result = expected2;
		}};
		
		// リプレイフェーズ
		String resultHelloInstance1 = hello.helloInstance1();
		//String resultHelloInstance2 = hello.helloInstance2();
		
		// 検証フェーズ
		assertEquals(expected1, resultHelloInstance1);
		//assertEquals(expected2, resultHelloInstance2);
	}
	
	@Test
	public void testHelloNonStrictExpectations() {
		final String expected1 = "mockedHelloInstance1";
		final String expected2 = "mockedHelloInstance2";
		// 記録フェーズ
		new NonStrictExpectations() {{
			hello.helloInstance1(); result = expected1;
			hello.helloInstance2(); result = expected2;
		}};
		
		// リプレイフェーズ
		String resultHelloInstance1 = hello.helloInstance1();
		//String resultHelloInstance2 = hello.helloInstance2();
		
		// 検証フェーズ
		assertEquals(expected1, resultHelloInstance1);
		//assertEquals(expected2, resultHelloInstance2);
	}

	@Test
	public void testHelloStrictExpectationsFail() {
		final String expected1 = "mockedHelloInstance1";
		final String expected2 = "mockedHelloInstance2";
		// 記録フェーズ
		new StrictExpectations() {{
			hello.helloInstance1(); result = expected1;
			hello.helloInstance2(); result = expected2;
		}};
		
		// リプレイフェーズ
		String resultHelloInstance2 = hello.helloInstance2();
		String resultHelloInstance1 = hello.helloInstance1();
		
		// 検証フェーズ
		assertEquals(expected1, resultHelloInstance1);
		assertEquals(expected2, resultHelloInstance2);
	}

	@Test
	public void testHelloStrictExpectations() {
		final String expected1 = "mockedHelloInstance1";
		final String expected2 = "mockedHelloInstance2";
		// 記録フェーズ
		new StrictExpectations() {{
			hello.helloInstance1(); result = expected1;
			hello.helloInstance2(); result = expected2;
		}};
		
		// リプレイフェーズ
		String resultHelloInstance1 = hello.helloInstance1();
		String resultHelloInstance2 = hello.helloInstance2();
		
		// 検証フェーズ
		assertEquals(expected1, resultHelloInstance1);
		assertEquals(expected2, resultHelloInstance2);
	}
}
  • testHelloExpectationsメソッド
    • 記録した全てのメソッドをリプレイしているのでOK
  • testHelloExpectationsFailメソッド
    • 記録したメソッドのうち、helloInstance2がリプレイされていないのでNG
  • testHelloNonStrictExpectationsメソッド
    • NonStrictでは、全てをリプレイする必要はないのでOK
  • testHelloStrictExpectationsFailメソッド
    • Strictでは、全てをリプレイし、かつ、順番も守る必要があるのでNG
  • testHelloStrictExpectationsメソッド
    • リプレイ回数も順番も守っているのでOK