Skip to content
Snippets Groups Projects
Commit 2b60d912 authored by Anuj Gupta's avatar Anuj Gupta Committed by Alan Braz
Browse files

Revert "IBM provider project created from master"

This reverts commit 315de3bf.
parent 910d0b26
Branches
Tags
No related merge requests found
......@@ -14,10 +14,12 @@ import org.opengroup.osdu.schema.constants.SchemaConstants;
import org.opengroup.osdu.schema.exceptions.ApplicationException;
import org.opengroup.osdu.schema.exceptions.NotFoundException;
import org.opengroup.osdu.schema.provider.interfaces.schemastore.ISchemaStore;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Repository;
import org.springframework.web.context.annotation.RequestScope;
import com.ibm.cloud.objectstorage.services.s3.AmazonS3;
import com.ibm.cloud.objectstorage.services.s3.model.AmazonS3Exception;
import com.ibm.cloud.objectstorage.services.s3.model.ObjectMetadata;
import com.ibm.cloud.objectstorage.services.s3.model.PutObjectRequest;
......@@ -61,9 +63,13 @@ public class IBMSchemaStore implements ISchemaStore {
public String getSchema(String dataPartitionId, String schemaId) throws ApplicationException, NotFoundException {
// dataPartitionId not used b/c getting from header
String content;
String content = null;
try {
content = getObjectAsString(schemaId);
} catch (AmazonS3Exception s3Exp) {
if(s3Exp.getStatusCode() == 404) {
throw new NotFoundException(HttpStatus.NOT_FOUND, SchemaConstants.SCHEMA_NOT_PRESENT);
}
} catch (Exception e) {
throw new ApplicationException(SchemaConstants.INTERNAL_SERVER_ERROR);
}
......
......@@ -9,7 +9,11 @@
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>schema-test-core</artifactId>
<artifactId>schema-test-core</artifactId>
<properties>
<os-core-lib-ibm.version>0.3.6-SNAPSHOT</os-core-lib-ibm.version>
</properties>
<dependencies>
<dependency>
......@@ -76,6 +80,12 @@
<artifactId>core-lib-azure</artifactId>
<version>0.0.17</version>
</dependency>
<dependency>
<groupId>org.opengroup.osdu</groupId>
<artifactId>os-core-lib-ibm</artifactId>
<version>${os-core-lib-ibm.version}</version>
</dependency>
</dependencies>
<build>
......
......@@ -180,7 +180,9 @@ public class SchemaServiceStepDef_POST implements En {
Gson gsn = new Gson();
JsonObject expectedData = gsn.fromJson(body, JsonObject.class);
JsonObject responseMsg = gsn.fromJson(response.getBody().toString(), JsonObject.class);
assertEquals(expectedData.toString(), responseMsg.toString());
if(!response.getBody().isEmpty())
assertEquals(expectedData.toString(), responseMsg.toString());
});
Given("I hit schema service POST API with {string} and auth token invalid", (String inputPayload) -> {
......
......@@ -2,6 +2,8 @@ package org.opengroup.osdu.schema.util;
import com.google.common.base.Strings;
import org.opengroup.osdu.azure.util.AzureServicePrincipal;
import org.opengroup.osdu.core.ibm.util.IdentityClient;
public class AuthUtil {
public synchronized String getToken() throws Exception {
......@@ -21,7 +23,7 @@ public class AuthUtil {
String app_resource_id = System.getProperty("AZURE_AD_APP_RESOURCE_ID", System.getenv("AZURE_AD_APP_RESOURCE_ID"));
token = new AzureServicePrincipal().getIdToken(sp_id, sp_secret, tenant_id, app_resource_id);
} else if (Strings.isNullOrEmpty(token) && vendor.equals("ibm")) {
System.out.println("Token generation code for ibm comes here");
token = IdentityClient.getTokenForUserWithAccess();
}
System.out.println("Bearer " + token);
return "Bearer " + token;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment