(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func TestInternalUploadQueueOneFileWithRest(t *testing.T) { |
| 69 | id := fmt.Sprintf("tiuqofwr%v", time.Now().Unix()) |
| 70 | rootFs, boltDb := runInstance.newCacheFs(t, remoteName, id, true, true, |
| 71 | map[string]string{"tmp_upload_path": path.Join(runInstance.tmpUploadDir, id), "tmp_wait_time": "1m"}) |
| 72 | |
| 73 | testInternalUploadQueueOneFile(t, id, rootFs, boltDb) |
| 74 | } |
| 75 | |
| 76 | func TestInternalUploadMoveExistingFile(t *testing.T) { |
| 77 | id := fmt.Sprintf("tiumef%v", time.Now().Unix()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…