use of org.wso2.carbon.apimgt.api.model.subscription.Application in project carbon-apimgt by wso2.
the class ApiDAOImplIT method testGetDocumentContent.
@Test(description = "Getting document content for an API")
public void testGetDocumentContent() throws Exception {
ApiDAO apiDAO = DAOFactory.getApiDAO();
testAddGetEndpoint();
API api = SampleTestObjectCreator.createDefaultAPI().build();
apiDAO.addAPI(api);
DocumentInfo documentInfo1 = SampleTestObjectCreator.createDefaultDocumentationInfo();
apiDAO.addDocumentInfo(api.getId(), documentInfo1);
List<DocumentInfo> documentInfoList = new ArrayList<>();
documentInfoList.add(documentInfo1);
List<DocumentInfo> documentInfoListFromDB = apiDAO.getDocumentsInfoList(api.getId());
Assert.assertTrue(documentInfoListFromDB.containsAll(documentInfoList));
DocumentInfo documentInfo = SampleTestObjectCreator.createFileDocumentationInfo();
apiDAO.addDocumentInfo(api.getId(), documentInfo);
byte[] contentBytes = SampleTestObjectCreator.createDefaultFileDocumentationContent();
apiDAO.addDocumentFileContent(documentInfo.getId(), new ByteArrayInputStream(contentBytes), "application/pdf", ADMIN);
byte[] retrievedContentFromDB = IOUtils.toByteArray(apiDAO.getDocumentFileContent(documentInfo.getId()));
Assert.assertEquals(contentBytes.length, retrievedContentFromDB.length);
}
use of org.wso2.carbon.apimgt.api.model.subscription.Application in project carbon-apimgt by wso2.
the class ApplicationDAOImplIT method testFingerprintAfterUpdatingApplication.
@Test
public void testFingerprintAfterUpdatingApplication() throws Exception {
ApplicationDAO applicationDAO = DAOFactory.getApplicationDAO();
// add new app
Application currentApp = TestUtil.addTestApplication();
String fingerprintBeforeUpdate = ETagUtils.generateETag(applicationDAO.getLastUpdatedTimeOfApplication(currentApp.getId()));
Assert.assertNotNull(fingerprintBeforeUpdate);
Thread.sleep(1);
Application newApp = SampleTestObjectCreator.createAlternativeApplication();
newApp.setId(currentApp.getId());
newApp.setCreatedTime(currentApp.getCreatedTime());
// update app
applicationDAO.updateApplication(currentApp.getId(), newApp);
String fingerprintAfterUpdate = ETagUtils.generateETag(applicationDAO.getLastUpdatedTimeOfApplication(currentApp.getId()));
Assert.assertNotNull(fingerprintAfterUpdate);
// compare
Assert.assertNotEquals(fingerprintBeforeUpdate, fingerprintAfterUpdate);
}
use of org.wso2.carbon.apimgt.api.model.subscription.Application in project carbon-apimgt by wso2.
the class ApplicationDAOImplIT method testAddAndGetApplication.
@Test
public void testAddAndGetApplication() throws Exception {
// add new app
Application app = TestUtil.addTestApplication();
ApplicationDAO applicationDAO = DAOFactory.getApplicationDAO();
// get added app
Application appFromDB = applicationDAO.getApplication(app.getId());
Assert.assertNotNull(appFromDB);
// compare
Assert.assertEquals(appFromDB, app, TestUtil.printDiff(appFromDB, app));
validateAppTimestamps(appFromDB, app);
}
use of org.wso2.carbon.apimgt.api.model.subscription.Application in project carbon-apimgt by wso2.
the class ApplicationDAOImplIT method testGetAllApplications.
@Test
public void testGetAllApplications() throws Exception {
// add 4 apps
String username = "admin";
Application app1 = TestUtil.addCustomApplication("App1", username);
Application app2 = TestUtil.addCustomApplication("App2", username);
Application app3 = TestUtil.addCustomApplication("App3", username);
Application app4 = TestUtil.addCustomApplication("App4", username);
ApplicationDAO applicationDAO = DAOFactory.getApplicationDAO();
// get added apps
List<Application> appsFromDB = applicationDAO.getApplications(username);
Assert.assertNotNull(appsFromDB);
Assert.assertEquals(appsFromDB.size(), 4);
for (Application application : appsFromDB) {
Assert.assertNotNull(application);
if (application.getName().equals(app1.getName())) {
Assert.assertEquals(application, app1, TestUtil.printDiff(application, app1));
validateAppTimestamps(application, app1);
} else if (application.getName().equals(app2.getName())) {
Assert.assertEquals(application, app2, TestUtil.printDiff(application, app2));
validateAppTimestamps(application, app2);
} else if (application.getName().equals(app3.getName())) {
Assert.assertEquals(application, app3, TestUtil.printDiff(application, app3));
validateAppTimestamps(application, app3);
} else if (application.getName().equals(app4.getName())) {
Assert.assertEquals(application, app4, TestUtil.printDiff(application, app4));
validateAppTimestamps(application, app4);
} else {
Assert.fail("Invalid Application returned.");
}
}
}
use of org.wso2.carbon.apimgt.api.model.subscription.Application in project carbon-apimgt by wso2.
the class ApplicationDAOImplIT method testAddApplicationWithPermissions.
@Test
public void testAddApplicationWithPermissions() throws Exception {
// add new app with permissions
Application app = TestUtil.addTestApplicationWithPermissions();
ApplicationDAO applicationDAO = DAOFactory.getApplicationDAO();
// get added app
Application appFromDB = applicationDAO.getApplication(app.getId());
Assert.assertNotNull(appFromDB);
// compare
Assert.assertEquals(appFromDB, app, TestUtil.printDiff(appFromDB, app));
validateAppTimestamps(appFromDB, app);
}
Aggregations