35

Mockito 1.8.5を使用してメソッドをスタブ化しようとしていますが、そうすると、例外をスローする実際のメソッド実装(parm値として ""を使用)が呼び出されます。

package background.internal; //located in trunk/tests/java/background/internal

public class MoveStepTest {

    @Test
    public void testMoveUpdate() {
        final String returnValue = "value";
        final FileAttachmentContainer file = mock(FileAttachmentContainer.class);
        doReturn(returnValue).when(file).moveAttachment(anyString(), anyString(), anyString());
        //this also fails
        //when(file.moveAttachment(anyString(), anyString(), anyString())).thenReturn(returnValue);

        final AttachmentMoveStep move = new AttachmentMoveStep(file);
        final Action moveResult = move.advance(1, mock(Context.class));
        assertEquals(Action.done, moveResult);
    }
}

私がモックしようとしている方法は次のようになります。最終的なメソッドやクラスはありません。

package background.internal; //located in trunk/src/background/internal


   public class FileAttachmentContainer {
        String moveAttachment(final String arg1, final String arg2, final String arg3) 
                throws CustomException {
            ...
        }

        String getPersistedValue(final Context context) {
           ...     
        }
    }

そして、私がモックを渡すクラスは次のようになります。

package background.internal; //located in trunk/src/background/internal
public class AttachmentMoveStep {

    private final FileAttachmentContainer file;

    public AttachmentMoveStep(final FileAttachmentContainer file) {
        this.file = file;        
    }

    public Action advance(final double acceleration, final Context context) {
        try {
            final String attachmentValue = this.file.getPersistedValue(context);
            final String entryId = this.file.moveAttachment(attachmentValue, "attachment", context.getUserName());

            //do some other stuff with entryId
        } catch (CustomException e) {
            e.log(context);
        }    
        return Action.done;
    }
}

実際の実装が呼び出される原因と、それを防ぐにはどうすればよいですか?

4

2 に答える 2

24

モックしているメソッドは、Mockitoコードにアクセスできません。

テストコードとテスト対象のコードは同じパッケージに含まれているため、コンパイラではモックをそのように設定できますが、実行時にMockitoライブラリはアクセスを試行する必要moveAttachmentがありますが、この場合は機能しません。これは、Mockitoのバグまたは既知の制限であるように見えます。これは、そのケースをサポートする必要があるためです(実際、ほとんどの場合、サポートします)。

最も簡単な方法はmoveAttachment、パブリックメソッドを作成することです。それが選択肢ではない場合は、最初にそれをあざけるかどうかを質問します。実際のメソッドが呼び出されるとどうなりますか?

最後のオプションは、PowerMockmoveAttachmentを使用してメソッドをプライベートメソッドとして扱い、そのようにモックすることです。

于 2012-08-17T17:46:12.503 に答える
-1

私は受け入れられた応答に同意しません。

私はあなたがあなたの環境についてより多くの詳細を提供しなければならないと思います。私はあなたの問題を再現することはできません。私はMavenプロジェクトで次のコードを書きます:

package background.internal; //located in src/main/java

public class FileAttachmentContainer {
    String moveAttachment(String arg1, String arg2, String arg3) {
        throw new IllegalStateException();
    }

    String getPersistedValue(Context context) {
        throw new IllegalStateException();
    }
}

package background.internal;

public class AttachmentMoveStep {

    private FileAttachmentContainer file;

    public AttachmentMoveStep(FileAttachmentContainer file) {
        this.file = file;
    }

    public Action advance(double acceleration, Context context) {
        String attachmentValue = file.getPersistedValue(context);
        file.moveAttachment(attachmentValue, "attachment", context.getUserName());
        return Action.done;
    }
}

および次のテストパス

package background.internal; //located in src/test/java

import static org.junit.Assert.assertEquals;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;

import org.junit.Test;

public class MoveStepTest {

    @Test
    public void testMoveUpdate() {
        String returnValue = "value";
        FileAttachmentContainer file = mock(FileAttachmentContainer.class);
        doReturn(returnValue).when(file).moveAttachment(anyString(), anyString(), anyString());
        //this also works
        //when(file.moveAttachment(anyString(), anyString(), anyString())).thenReturn(returnValue);

        AttachmentMoveStep move = new AttachmentMoveStep(file);
        Action moveResult = move.advance(1, mock(Context.class));
        assertEquals(Action.done, moveResult);
    }
}

私のプロジェクトは次の依存関係を使用しています:

  • jdk1.7.0_05
  • junit-4.10.jar
  • mockito-all-1.9.0.jar
  • javassist-3.16.1-GA.jar
  • objenesis-1.2.jar
  • hamcrest-core-1.1.jar
于 2012-08-18T05:50:14.327 に答える