You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Java
		
	
| package org.thoughtcrime.securesms;
 | |
| 
 | |
| import android.content.Context;
 | |
| import android.os.Handler;
 | |
| import android.os.Looper;
 | |
| import android.util.Log;
 | |
| 
 | |
| import org.junit.Before;
 | |
| import org.junit.runner.RunWith;
 | |
| import org.mockito.invocation.InvocationOnMock;
 | |
| import org.mockito.stubbing.Answer;
 | |
| import org.powermock.api.mockito.PowerMockito;
 | |
| import org.powermock.core.classloader.annotations.PrepareForTest;
 | |
| import org.powermock.modules.junit4.PowerMockRunner;
 | |
| import org.thoughtcrime.securesms.crypto.MasterSecret;
 | |
| 
 | |
| import javax.crypto.spec.SecretKeySpec;
 | |
| 
 | |
| import static org.mockito.Matchers.anyString;
 | |
| import static org.powermock.api.mockito.PowerMockito.mock;
 | |
| import static org.powermock.api.mockito.PowerMockito.mockStatic;
 | |
| 
 | |
| @RunWith(PowerMockRunner.class)
 | |
| @PrepareForTest({ Log.class, Handler.class, Looper.class })
 | |
| public abstract class BaseUnitTest {
 | |
|   protected Context      context;
 | |
|   protected MasterSecret masterSecret;
 | |
| 
 | |
|   @Before
 | |
|   public void setUp() throws Exception {
 | |
|     context      = mock(Context.class);
 | |
|     masterSecret = new MasterSecret(new SecretKeySpec(new byte[16], "AES"),
 | |
|                                     new SecretKeySpec(new byte[16], "HmacSHA1"));
 | |
|     mockStatic(Looper.class);
 | |
|     mockStatic(Log.class);
 | |
|     mockStatic(Handler.class);
 | |
| 
 | |
|     PowerMockito.when(Looper.getMainLooper()).thenReturn(null);
 | |
|     PowerMockito.whenNew(Handler.class).withAnyArguments().thenReturn(null);
 | |
| 
 | |
|     Answer<?> logAnswer = new Answer<Void>() {
 | |
|       @Override public Void answer(InvocationOnMock invocation) throws Throwable {
 | |
|         final String tag = (String)invocation.getArguments()[0];
 | |
|         final String msg = (String)invocation.getArguments()[1];
 | |
|         System.out.println(invocation.getMethod().getName().toUpperCase() + "/[" + tag + "] " + msg);
 | |
|         return null;
 | |
|       }
 | |
|     };
 | |
|     PowerMockito.doAnswer(logAnswer).when(Log.class, "d", anyString(), anyString());
 | |
|     PowerMockito.doAnswer(logAnswer).when(Log.class, "i", anyString(), anyString());
 | |
|     PowerMockito.doAnswer(logAnswer).when(Log.class, "w", anyString(), anyString());
 | |
|     PowerMockito.doAnswer(logAnswer).when(Log.class, "e", anyString(), anyString());
 | |
|     PowerMockito.doAnswer(logAnswer).when(Log.class, "wtf", anyString(), anyString());
 | |
|   }
 | |
| }
 |