Skip to content
Snippets Groups Projects
Commit cc5cfa25 authored by felmer's avatar felmer
Browse files

SSDM-6019: Fixing a bug reveal in openBIS manual tests: Custom import failed....

SSDM-6019: Fixing a bug reveal in openBIS manual tests: Custom import failed. The fix doesn't check authorization for custom import because the data set owner isn't known.

SVN: 39100
parent a10612b0
No related branches found
No related tags found
No related merge requests found
...@@ -162,11 +162,12 @@ class PutDataSetExecutor implements IDataSetHandlerRpc ...@@ -162,11 +162,12 @@ class PutDataSetExecutor implements IDataSetHandlerRpc
/** /**
* Run the put command; does *not* close the input stream — clients of the executor are expected to close the input stream when appropriate. * Run the put command; does *not* close the input stream — clients of the executor are expected to close the input stream when appropriate.
* *
* @param noOwnerAllowed <code>true</code> if missing data set owner is allowed. This is the case for custom import.
* @throws IOException * @throws IOException
*/ */
public List<DataSetInformation> execute() throws UserFailureException, IOException public List<DataSetInformation> execute(boolean noOwnerAllowed) throws UserFailureException, IOException
{ {
PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet); PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet, noOwnerAllowed);
writeDataSetToTempDirectory(); writeDataSetToTempDirectory();
overrideOrNull = null; overrideOrNull = null;
...@@ -186,7 +187,7 @@ class PutDataSetExecutor implements IDataSetHandlerRpc ...@@ -186,7 +187,7 @@ class PutDataSetExecutor implements IDataSetHandlerRpc
*/ */
public List<DataSetInformation> executeWithoutWriting() throws UserFailureException public List<DataSetInformation> executeWithoutWriting() throws UserFailureException
{ {
PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet); PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet, false);
overrideOrNull = null; overrideOrNull = null;
......
...@@ -156,13 +156,13 @@ public class PutDataSetService ...@@ -156,13 +156,13 @@ public class PutDataSetService
new PutDataSetExecutor(this, new PutDataSetExecutor(this,
((PutDataSetServerPluginHolder) registrator).getPlugin(), ((PutDataSetServerPluginHolder) registrator).getPlugin(),
sessionToken, createNewDataSetDTO(customImportFile), sessionToken, createNewDataSetDTO(customImportFile),
getAsInputStream(customImportFile)).execute(); getAsInputStream(customImportFile)).execute(true);
} else } else
{ {
infos = infos =
new PutDataSetTopLevelDataSetHandler(this, registrator, sessionToken, new PutDataSetTopLevelDataSetHandler(this, registrator, sessionToken,
createNewDataSetDTO(customImportFile), createNewDataSetDTO(customImportFile),
getAsInputStream(customImportFile)).execute(); getAsInputStream(customImportFile)).execute(true);
} }
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
for (DataSetInformation info : infos) for (DataSetInformation info : infos)
...@@ -220,12 +220,12 @@ public class PutDataSetService ...@@ -220,12 +220,12 @@ public class PutDataSetService
infos = infos =
new PutDataSetExecutor(this, new PutDataSetExecutor(this,
((PutDataSetServerPluginHolder) registrator).getPlugin(), ((PutDataSetServerPluginHolder) registrator).getPlugin(),
sessionToken, newDataSet, inputStream).execute(); sessionToken, newDataSet, inputStream).execute(false);
} else } else
{ {
infos = infos =
new PutDataSetTopLevelDataSetHandler(this, registrator, sessionToken, new PutDataSetTopLevelDataSetHandler(this, registrator, sessionToken,
newDataSet, inputStream).execute(); newDataSet, inputStream).execute(false);
} }
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
for (DataSetInformation info : infos) for (DataSetInformation info : infos)
......
...@@ -173,11 +173,12 @@ class PutDataSetTopLevelDataSetHandler ...@@ -173,11 +173,12 @@ class PutDataSetTopLevelDataSetHandler
/** /**
* Run the put command; does *not* close the input stream &mdash; clients of the executor are expected to close the input stream when appropriate. * Run the put command; does *not* close the input stream &mdash; clients of the executor are expected to close the input stream when appropriate.
* *
* @param noOwnerAllowed <code>true</code> if missing data set owner is allowed. This is the case for custom import.
* @throws IOException * @throws IOException
*/ */
public List<DataSetInformation> execute() throws UserFailureException, IOException public List<DataSetInformation> execute(boolean noOwnerAllowed) throws UserFailureException, IOException
{ {
PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet); PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet, noOwnerAllowed);
writeDataSetToTempDirectory(); writeDataSetToTempDirectory();
...@@ -198,7 +199,7 @@ class PutDataSetTopLevelDataSetHandler ...@@ -198,7 +199,7 @@ class PutDataSetTopLevelDataSetHandler
*/ */
public List<DataSetInformation> executeWithoutWriting() throws UserFailureException public List<DataSetInformation> executeWithoutWriting() throws UserFailureException
{ {
PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet); PutDataSetUtil.checkAccess(sessionToken, getOpenBisService(), newDataSet, false);
// Register the data set // Register the data set
try try
......
...@@ -27,7 +27,7 @@ import ch.systemsx.cisd.openbis.dss.generic.shared.api.v1.NewDataSetDTO.DataSetO ...@@ -27,7 +27,7 @@ import ch.systemsx.cisd.openbis.dss.generic.shared.api.v1.NewDataSetDTO.DataSetO
public class PutDataSetUtil public class PutDataSetUtil
{ {
public static void checkAccess(String sessionToken, IEncapsulatedOpenBISService service, NewDataSetDTO newDataSet) public static void checkAccess(String sessionToken, IEncapsulatedOpenBISService service, NewDataSetDTO newDataSet, boolean noOwnerAllowed)
{ {
if (newDataSet == null) if (newDataSet == null)
{ {
...@@ -38,6 +38,10 @@ public class PutDataSetUtil ...@@ -38,6 +38,10 @@ public class PutDataSetUtil
if (owner == null) if (owner == null)
{ {
if (noOwnerAllowed)
{
return;
}
throw new UserFailureException("Owner of a new data set cannot be null"); throw new UserFailureException("Owner of a new data set cannot be null");
} }
......
...@@ -182,7 +182,7 @@ public class PutDataSetTopLevelDataSetHandlerTest extends AbstractFileSystemTest ...@@ -182,7 +182,7 @@ public class PutDataSetTopLevelDataSetHandlerTest extends AbstractFileSystemTest
new PutDataSetTopLevelDataSetHandler(putDataSetService, registrator, SESSION_TOKEN, new PutDataSetTopLevelDataSetHandler(putDataSetService, registrator, SESSION_TOKEN,
newDataSet, inputStream); newDataSet, inputStream);
handler.execute(); handler.execute(false);
assertEquals("MY-TYPE", dataSetInfoMatcher.recordedObject().getDataSetType().getCode()); assertEquals("MY-TYPE", dataSetInfoMatcher.recordedObject().getDataSetType().getCode());
List<NewProperty> dataSetProperties = List<NewProperty> dataSetProperties =
...@@ -230,7 +230,7 @@ public class PutDataSetTopLevelDataSetHandlerTest extends AbstractFileSystemTest ...@@ -230,7 +230,7 @@ public class PutDataSetTopLevelDataSetHandlerTest extends AbstractFileSystemTest
new PutDataSetTopLevelDataSetHandler(putDataSetService, registrator, SESSION_TOKEN, new PutDataSetTopLevelDataSetHandler(putDataSetService, registrator, SESSION_TOKEN,
newDataSet, inputStream); newDataSet, inputStream);
handler.execute(); handler.execute(false);
assertEquals(null, dataSetInfoMatcher.recordedObject().getDataSetType()); assertEquals(null, dataSetInfoMatcher.recordedObject().getDataSetType());
assertEquals(0, dataSetInfoMatcher.recordedObject().getDataSetProperties().size()); assertEquals(0, dataSetInfoMatcher.recordedObject().getDataSetProperties().size());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment