Skip to content
Snippets Groups Projects
Commit aad4a50f authored by piotr.kupczyk@id.ethz.ch's avatar piotr.kupczyk@id.ethz.ch
Browse files

SSDM-13578 : 2PT : Database and V3 Implementation - js facade

parent e58ac46f
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
package ch.ethz.sis.openbis.generic.typescript.dto; package ch.ethz.sis.openbis.generic.typescript.dto;
import java.time.OffsetDateTime;
import java.util.List; import java.util.List;
import ch.ethz.sis.openbis.generic.typescript.TypeScriptMethod; import ch.ethz.sis.openbis.generic.typescript.TypeScriptMethod;
...@@ -70,11 +69,11 @@ public class OpenBISJavaScriptAFSFacade ...@@ -70,11 +69,11 @@ public class OpenBISJavaScriptAFSFacade
private Long size; private Long size;
private OffsetDateTime lastModifiedTime; private String lastModifiedTime;
private OffsetDateTime creationTime; private String creationTime;
private OffsetDateTime lastAccessTime; private String lastAccessTime;
public String getOwner() public String getOwner()
{ {
...@@ -96,17 +95,22 @@ public class OpenBISJavaScriptAFSFacade ...@@ -96,17 +95,22 @@ public class OpenBISJavaScriptAFSFacade
return directory; return directory;
} }
public OffsetDateTime getLastModifiedTime() public Long getSize()
{
return size;
}
public String getLastModifiedTime()
{ {
return lastModifiedTime; return lastModifiedTime;
} }
public OffsetDateTime getCreationTime() public String getCreationTime()
{ {
return creationTime; return creationTime;
} }
public OffsetDateTime getLastAccessTime() public String getLastAccessTime()
{ {
return lastAccessTime; return lastAccessTime;
} }
......
...@@ -24,9 +24,19 @@ exports.default = new Promise((resolve) => { ...@@ -24,9 +24,19 @@ exports.default = new Promise((resolve) => {
} }
} }
function assertFileEquals(c: common.CommonClass, actualFile: openbis.File, expectedPath: string, expectedDirectory: boolean) { function assertFileEquals(c: common.CommonClass, actualFile: openbis.File, expectedFile: Object) {
c.assertEqual(actualFile.getPath(), expectedPath, "File path") c.assertEqual(actualFile.getPath(), expectedFile["path"], "File path")
c.assertEqual(actualFile.getDirectory(), expectedDirectory, "File directory") c.assertEqual(actualFile.getOwner(), expectedFile["owner"], "File owner")
c.assertEqual(actualFile.getName(), expectedFile["name"], "File name")
c.assertEqual(actualFile.getSize(), expectedFile["size"], "File size")
c.assertEqual(actualFile.getDirectory(), expectedFile["directory"], "File directory")
var now = new Date()
var datePrefix = now.getFullYear() + "-" + String(now.getMonth() + 1).padStart(2, "0") + "-" + String(now.getDate()).padStart(2, "0")
c.assertTrue(actualFile.getCreationTime().startsWith(datePrefix), "File creation time")
c.assertTrue(actualFile.getLastModifiedTime().startsWith(datePrefix), "File modified time")
c.assertTrue(actualFile.getLastAccessTime().startsWith(datePrefix), "File access time")
} }
async function assertFileExists(c: common.CommonClass, owner: string, source: string) { async function assertFileExists(c: common.CommonClass, owner: string, source: string) {
...@@ -49,6 +59,10 @@ exports.default = new Promise((resolve) => { ...@@ -49,6 +59,10 @@ exports.default = new Promise((resolve) => {
QUnit.test("list()", async function (assert) { QUnit.test("list()", async function (assert) {
const testFolder = "test-list" const testFolder = "test-list"
const testContent1 = "test-content-1-abc"
const testContent2 = "test-content-2-abcd"
const testContent3 = "test-content-3-abcde"
const testContent4 = "test-content-4-abcdef"
try { try {
var c = new common(assert, dtos) var c = new common(assert, dtos)
...@@ -58,10 +72,10 @@ exports.default = new Promise((resolve) => { ...@@ -58,10 +72,10 @@ exports.default = new Promise((resolve) => {
await deleteFile(facade, testFolder, "") await deleteFile(facade, testFolder, "")
await facade.getAfsServerFacade().write(testFolder, "test-file-1", 0, "test-content-1") await facade.getAfsServerFacade().write(testFolder, "test-file-1", 0, testContent1)
await facade.getAfsServerFacade().write(testFolder + "/test-folder-1", "test-file-2", 0, "test-content-2") await facade.getAfsServerFacade().write(testFolder + "/test-folder-1", "test-file-2", 0, testContent2)
await facade.getAfsServerFacade().write(testFolder + "/test-folder-1", "test-file-3", 0, "test-content-3") await facade.getAfsServerFacade().write(testFolder + "/test-folder-1", "test-file-3", 0, testContent3)
await facade.getAfsServerFacade().write(testFolder + "/test-folder-2", "test-file-4", 0, "test-content-4") await facade.getAfsServerFacade().write(testFolder + "/test-folder-2", "test-file-4", 0, testContent4)
var list = await facade.getAfsServerFacade().list(testFolder, "", true) var list = await facade.getAfsServerFacade().list(testFolder, "", true)
...@@ -71,12 +85,36 @@ exports.default = new Promise((resolve) => { ...@@ -71,12 +85,36 @@ exports.default = new Promise((resolve) => {
c.assertEqual(list.length, 6, "Number of files") c.assertEqual(list.length, 6, "Number of files")
assertFileEquals(c, list[0], "/test-file-1", false) assertFileEquals(c, list[0], {
assertFileEquals(c, list[1], "/test-folder-1", true) path: "/test-file-1",
assertFileEquals(c, list[2], "/test-folder-1/test-file-2", false) owner: testFolder,
assertFileEquals(c, list[3], "/test-folder-1/test-file-3", false) name: "test-file-1",
assertFileEquals(c, list[4], "/test-folder-2", true) size: testContent1.length,
assertFileEquals(c, list[5], "/test-folder-2/test-file-4", false) directory: false,
})
assertFileEquals(c, list[1], { path: "/test-folder-1", owner: testFolder, name: "test-folder-1", size: null, directory: true })
assertFileEquals(c, list[2], {
path: "/test-folder-1/test-file-2",
owner: testFolder,
name: "test-file-2",
size: testContent2.length,
directory: false,
})
assertFileEquals(c, list[3], {
path: "/test-folder-1/test-file-3",
owner: testFolder,
name: "test-file-3",
size: testContent3.length,
directory: false,
})
assertFileEquals(c, list[4], { path: "/test-folder-2", owner: testFolder, name: "test-folder-2", size: null, directory: true })
assertFileEquals(c, list[5], {
path: "/test-folder-2/test-file-4",
owner: testFolder,
name: "test-file-4",
size: testContent4.length,
directory: false,
})
c.finish() c.finish()
} catch (error) { } catch (error) {
......
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