package com.uxxu.konashi.lib.action;
import android.bluetooth.BluetoothGattCharacteristic;
import android.bluetooth.BluetoothGattService;
import com.uxxu.konashi.lib.KonashiErrorType;
import com.uxxu.konashi.lib.store.I2cStore;
import org.junit.Before;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import java.util.UUID;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
/**
* Created by izumin on 9/21/15.
*/
public class I2cModeActionTest {
@Mock private BluetoothGattService mService;
@Mock private BluetoothGattCharacteristic mCharacteristic;
@Mock private I2cStore mStore;
private I2cModeAction mAction;
private ArgumentCaptor<byte[]> mValueCaptor;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mValueCaptor = ArgumentCaptor.forClass(byte[].class);
when(mService.getCharacteristic(any(UUID.class))).thenReturn(mCharacteristic);
when(mStore.isEnabled()).thenReturn(true);
}
@Test
public void validate_WithInvalidMode() throws Exception {
mAction = new I2cModeAction(mService, 0x03, mStore);
assertThat(mAction.validate()).isEqualTo(KonashiErrorType.INVALID_MODE);
}
@Test
public void validate_WithValidMode() throws Exception {
mAction = new I2cModeAction(mService, 0x01, mStore);
assertThat(mAction.validate()).isEqualTo(KonashiErrorType.NO_ERROR);
}
@Test
public void setValue_ToDisable() throws Exception {
mAction = new I2cModeAction(mService, 0x00, mStore);
mAction.setValue();
verify(mCharacteristic, times(1)).setValue(mValueCaptor.capture());
assertThat(mValueCaptor.getValue()[0]).isEqualTo((byte) 0x00);
}
@Test
public void setValue_ToEnable100k() throws Exception {
mAction = new I2cModeAction(mService, 0x01, mStore);
mAction.setValue();
verify(mCharacteristic, times(1)).setValue(mValueCaptor.capture());
assertThat(mValueCaptor.getValue()[0]).isEqualTo((byte) 0x01);
}
@Test
public void setValue_ToEnable400k() throws Exception {
mAction = new I2cModeAction(mService, 0x02, mStore);
mAction.setValue();
verify(mCharacteristic, times(1)).setValue(mValueCaptor.capture());
assertThat(mValueCaptor.getValue()[0]).isEqualTo((byte) 0x02);
}
}