org.testng.internal.collections.Pair Java Examples

The following examples show how to use org.testng.internal.collections.Pair. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BasePolicyManagementDAOTest.java    From carbon-device-mgt with Apache License 2.0 6 votes vote down vote up
protected Pair<Connection, Pair<DataSource, DataSource>> mockConnection() throws Exception {
    //Throwing PolicyManagerDAOException while adding profile
    DatabaseMetaData databaseMetaData = mock(DatabaseMetaData.class);
    when(databaseMetaData.getDatabaseProductName()).thenReturn("H2");

    Connection conn = mock(Connection.class);
    when(conn.getMetaData()).thenReturn(databaseMetaData);

    DataSource dataSource = mock(DataSource.class);
    when(dataSource.getConnection()).thenReturn(conn);

    Field dataSourceField = PolicyManagementDAOFactory.class.getDeclaredField("dataSource");
    dataSourceField.setAccessible(true);
    DataSource oldDataSource = (DataSource) dataSourceField.get(null);
    PolicyManagementDAOFactory.init(dataSource);

    return new Pair<>(conn, new Pair<>(oldDataSource, dataSource));
}
 
Example #2
Source File: ProfileManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 6 votes vote down vote up
@Test(description = "This test case tests handling SQLException when updating profile",
      dependsOnMethods = {"testUpdateProfileThrowingFeatureManagerDAOException"},
      expectedExceptions = IllegalTransactionStateException.class)
public void testUpdateProfileThrowingIllegalTransactionStateException() throws Exception {
    //Retrieving profile object
    Profile savedProfile = profileManager.getProfile(profile1.getProfileId());

    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.first()).setAutoCommit(anyBoolean());

    String newProfileName = "Updated Test Profile";
    savedProfile.setProfileName(newProfileName);
    try {
        profileManager.updateProfile(savedProfile);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #3
Source File: FeatureManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 6 votes vote down vote up
@Test(description = "This test case tests handling SQLException when adding new profile feature",
      dependsOnMethods = "testUpdateProfileFeaturesThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testUpdateProfileFeaturesThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_D);
    List<ProfileFeature> profileFeaturesList = profile.getProfileFeaturesList();

    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.first()).setAutoCommit(anyBoolean());
    try {
        featureManager.updateProfileFeatures(profileFeaturesList, profile.getProfileId());
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #4
Source File: FeatureManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 6 votes vote down vote up
@Test(description = "This test case tests handling SQLException when adding new profile feature",
      dependsOnMethods = "testAddProfileFeaturesThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testAddProfileFeaturesThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_D);
    List<ProfileFeature> profileFeaturesList = profile.getProfileFeaturesList();

    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.first()).setAutoCommit(anyBoolean());
    try {
        featureManager.addProfileFeatures(profileFeaturesList, profile.getProfileId());
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #5
Source File: FeatureManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 6 votes vote down vote up
@Test(description = "This test case tests handling SQLException when adding new profile feature",
      dependsOnMethods = "testAddProfileFeatureThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testAddProfileThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_D);
    ProfileFeature profileFeature = profile.getProfileFeaturesList().get(0);

    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.first()).setAutoCommit(anyBoolean());
    try {
        featureManager.addProfileFeature(profileFeature, profile.getProfileId());
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #6
Source File: ProfileManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when deleting a profile",
      dependsOnMethods = "testDeleteProfileThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testDeleteProfileThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();

    try {
        profileManager.deleteProfile(profile1);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #7
Source File: TrashTest.java    From incubator-gobblin with Apache License 2.0 5 votes vote down vote up
@Test
public void testMoveToTrashExistingFile() throws IOException {

  TrashTestBase trash = new TrashTestBase(new Properties());

  String fileName = "delete";

  Path pathToDelete = new Path("/path/to", fileName);
  Pattern expectedNamePattern = Pattern.compile("^" + fileName + "_[0-9]+$");

  final List<Pair<Path, Path>> movedPaths = Lists.newArrayList();

  when(trash.fs.exists(any(Path.class))).thenReturn(true);
  when(trash.fs.rename(any(Path.class), any(Path.class))).thenAnswer(new Answer<Boolean>() {
    @Override
    public Boolean answer(InvocationOnMock invocation)
        throws Throwable {
      Object[] args = invocation.getArguments();
      movedPaths.add(new Pair<Path, Path>((Path) args[0], (Path) args[1]));
      return true;
    }
  });

  Assert.assertTrue(trash.trash.moveToTrash(pathToDelete));

  verify(trash.fs, times(0)).mkdirs(any(Path.class));

  Assert.assertEquals(movedPaths.size(), 1);
  Assert.assertTrue(movedPaths.get(0).first().equals(pathToDelete));
  Assert.assertTrue(movedPaths.get(0).second().getParent().toString().endsWith(pathToDelete.getParent().toString()));
  Assert.assertTrue(expectedNamePattern.matcher(movedPaths.get(0).second().getName()).matches());
  Assert.assertTrue(movedPaths.get(0).second().getParent().getParent().getParent().equals(trash.trash.getTrashLocation()));

}
 
Example #8
Source File: TrashTest.java    From incubator-gobblin with Apache License 2.0 5 votes vote down vote up
@Test
public void testMoveToTrash() throws IOException {

  TrashTestBase trash = new TrashTestBase(new Properties());

  Path pathToDelete = new Path("/path/to/delete");

  final List<Pair<Path, Path>> movedPaths = Lists.newArrayList();

  when(trash.fs.exists(any(Path.class))).thenReturn(false);
  when(trash.fs.rename(any(Path.class), any(Path.class))).thenAnswer(new Answer<Boolean>() {
    @Override
    public Boolean answer(InvocationOnMock invocation)
        throws Throwable {
      Object[] args = invocation.getArguments();
      movedPaths.add(new Pair<Path, Path>((Path) args[0], (Path) args[1]));
      return true;
    }
  });

  Assert.assertTrue(trash.trash.moveToTrash(pathToDelete));

  verify(trash.fs, times(1)).mkdirs(any(Path.class));

  Assert.assertEquals(movedPaths.size(), 1);
  Assert.assertTrue(movedPaths.get(0).first().equals(pathToDelete));
  Assert.assertTrue(movedPaths.get(0).second().toString().endsWith(pathToDelete.toString()));
  Assert.assertTrue(movedPaths.get(0).second().getParent().getParent().getParent().equals(trash.trash.getTrashLocation()));

}
 
Example #9
Source File: FeatureManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when deleting features of a profile",
      dependsOnMethods = "testDeleteFeaturesOfProfileThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testDeleteFeaturesOfProfileThrowingIllegalTransactionStateException() throws Exception {
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();
    try {
        featureManager.deleteFeaturesOfProfile(profile1);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #10
Source File: FeatureManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when retrieving features of a profile",
      dependsOnMethods = "testGetFeaturesForProfileThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testGetFeaturesForProfileThrowingIllegalTransactionStateException() throws Exception {
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();
    try {
        featureManager.getFeaturesForProfile(profile1.getProfileId());
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #11
Source File: FeatureManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when all features of a device type",
      dependsOnMethods = "testGetAllFeatures",
      expectedExceptions = {IllegalTransactionStateException.class, FeatureManagementException.class})
public void testGetAllFeaturesThrowingIllegalTransactionStateException() throws Exception {
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();
    try {
        featureManager.getAllFeatures(DEVICE_TYPE_D);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #12
Source File: VerifierTest.java    From fusionauth-jwt with Apache License 2.0 5 votes vote down vote up
@Test
public void verify() {
  // JWT Subject : 123456789
  for (Pair<Verifier, String> algorithm : algorithms) {

    // Implicit call to verifier.verify and get a JWT back
    try {
      JWT jwt = JWT.getDecoder().decode(algorithm.second(), algorithm.first());
      assertNotNull(jwt);
      assertEquals(jwt.subject, "123456789");
    } catch (Exception e) {
      fail("Failed to validate signature.", e);
    }
  }
}
 
Example #13
Source File: ProfileManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when retrieving all profiles of a device type",
      dependsOnMethods = "testGetProfilesOfDeviceTypeThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testGetProfilesOfDeviceTypeThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();

    try {
        profileManager.getProfilesOfDeviceType(DEVICE_TYPE_C);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #14
Source File: ProfileManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when retrieving all profiles",
      dependsOnMethods = "testGetAllProfilesThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testGetAllProfilesThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();

    try {
        profileManager.getAllProfiles();
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #15
Source File: ProfileManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when retrieving profile",
      dependsOnMethods = "testGetProfileThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testGetProfileThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();

    try {
        profileManager.getProfile(profile1.getProfileId());
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #16
Source File: ProfileManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when adding new profile",
      dependsOnMethods = "testAddProfileThrowingFeatureManagerDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testAddProfileThrowingIllegalTransactionStateException() throws Exception {
    //Creating profile object
    Profile profile = ProfileCreator.getProfile(FeatureCreator.getFeatureList(), DEVICE_TYPE_C);
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.first()).setAutoCommit(anyBoolean());
    try {
        profileManager.addProfile(profile);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #17
Source File: MonitoringManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling SQLException when checking is compliant",
      dependsOnMethods = "testIsCompliantThrowingMonitoringDAOException",
      expectedExceptions = IllegalTransactionStateException.class)
public void testIsCompliantThrowingIllegalTransactionStateException() throws Exception {
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doThrow(new SQLException()).when(pair.second().second()).getConnection();
    try {
        DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
        deviceIdentifier.setType(DEVICE_TYPE_E);
        deviceIdentifier.setId(String.valueOf(device5.getDeviceIdentifier()));
        monitoringManager.isCompliant(deviceIdentifier);
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #18
Source File: MonitoringManagerImplTest.java    From carbon-device-mgt with Apache License 2.0 5 votes vote down vote up
@Test(description = "This test case tests handling PolicyComplianceException when checking policy compliance",
      dependsOnMethods = "testCheckPolicyComplianceThrowingProfileManagerDAOException",
      expectedExceptions = PolicyComplianceException.class)
public void testAddProfileThrowingPolicyComplianceException() throws Exception {
    Pair<Connection, Pair<DataSource, DataSource>> pair = mockConnection();
    PowerMockito.doAnswer(new Answer<Connection>() {
        int callCounter = 0;
        @Override
        public Connection answer(InvocationOnMock invocationOnMock) throws Throwable {
            if(callCounter > 0){
                Field currentConnectionField = PolicyManagementDAOFactory.class.getDeclaredField("currentConnection");
                currentConnectionField.setAccessible(true);
                ThreadLocal<Connection> threadLocal = new ThreadLocal<>();
                threadLocal.set(pair.first());
                currentConnectionField.set(null, threadLocal);
                throw new SQLException();
            }
            callCounter++;
            return pair.second().first().getConnection();
        }
    }).when(pair.second().second()).getConnection();
    DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
    deviceIdentifier.setType(DEVICE_TYPE_E);
    deviceIdentifier.setId(String.valueOf(device5.getDeviceIdentifier()));
    try {
        monitoringManager.checkPolicyCompliance(deviceIdentifier, new ArrayList<ComplianceFeature>());
    } finally {
        PolicyManagementDAOFactory.init(pair.second().first());
    }
}
 
Example #19
Source File: MethodHelper.java    From qaf with MIT License 4 votes vote down vote up
/**
 * Finds TestNG methods that the specified TestNG method depends upon
 * @param m TestNG method
 * @param methods list of methods to search for depended upon methods
 * @return list of methods that match the criteria
 */
protected static ITestNGMethod[] findDependedUponMethods(ITestNGMethod m,
    ITestNGMethod[] methods)
{
  String canonicalMethodName = calculateMethodCanonicalName(m);
  List<ITestNGMethod> vResult = Lists.newArrayList();
  String regexp = null;
  for (String fullyQualifiedRegexp : m.getMethodsDependedUpon()) {
    boolean foundAtLeastAMethod = false;

    if (null != fullyQualifiedRegexp) {
      // Escapes $ in regexps as it is not meant for end - line matching, but inner class matches.
      regexp = fullyQualifiedRegexp.replace("$", "\\$");
      boolean usePackage = regexp.indexOf('.') != -1;
      Pattern pattern = Pattern.compile(regexp);

      for (ITestNGMethod method : methods) {
        ConstructorOrMethod thisMethod = method.getConstructorOrMethod();
        String thisMethodName = thisMethod.getName();
        String methodName = usePackage ?
            calculateMethodCanonicalName(method)
            : thisMethodName;
        Pair<String, String> cacheKey = Pair.create(regexp, methodName);
        Boolean match = MATCH_CACHE.get(cacheKey);
        if (match == null) {
            match = pattern.matcher(methodName).matches();
            MATCH_CACHE.put(cacheKey, match);
        }
        if (match) {
          vResult.add(method);
          foundAtLeastAMethod = true;
        }
      }
    }

    if (!foundAtLeastAMethod) {
      if (m.ignoreMissingDependencies()) {
        continue;
      }
      if (m.isAlwaysRun()) {
        continue;
      }
      Method maybeReferringTo = findMethodByName(m, regexp);
      if (maybeReferringTo != null) {
        throw new TestNGException(canonicalMethodName + "() is depending on method "
            + maybeReferringTo + ", which is not annotated with @Test or not included.");
      }
      throw new TestNGException(canonicalMethodName
          + "() depends on nonexistent method " + regexp);
    }
  }//end for

  return vResult.toArray(new ITestNGMethod[vResult.size()]);
}