インターネットには情報が少なすぎるため、解決できない問題があります。だからここに私がやろうとしていることがあります:
テスト クラスFile
のセクションに を作成します。setUp()
@Before
public void setUp() {
activity = new MainActivity();
TestUtils.copyAsset(activity, "test.zip");
File archive = new File(Environment.getExternalStorageDirectory(), "/test.zip");
archiveManager = new ArchiveManager(archive, ArchiveType.ZIP);
}
AsyncTask
次に、リスナーを介して結果を返すを開始するテストを実行します。
@Test
public void testExtractFiles() {
ZipEntry entry = ((ZipArchive) archiveManager.getArchive()).getZipFile().getEntry(
"test.pdf");
ZipEntryFile zef = new ZipEntryFile(Environment.getExternalStorageDirectory() + "test.pdf",
entry.getName(), new EntryWrapper(new ParseableZipEntry(entry)));
OnFileExtractedListener listener = new OnFileExtractedListener() {
@Override
public void onFileExtracted(File file, boolean open) {
System.out.println("==================extract");
Assert.assertNotNull("file not null", file);
Assert.assertTrue("file exists", file.exists());
Assert.assertTrue("don't open", !open);
}
@Override
public void onExtractionCompleted() {
}
};
ArrayList<File> files = new ArrayList<File>();
files.add(zef);
archiveManager.extractFiles(activity, files, Environment.getExternalStorageDirectory(),
listener);
}
テストはうまく動作します。File
作成した を削除する必要があるため、次のコードを使用します。
@After
public void tearDown() {
try {
FileUtils.cleanDirectory(Environment.getExternalStorageDirectory());
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(Arrays.toString(Environment.getExternalStorageDirectory().list()));
}
ファイルが削除されず、次の例外が発生します。
java.io.IOException: Unable to delete file: C:\Users\user\AppData\Local\Temp\android-external-cache\test.zip
at org.apache.commons.io.FileUtils.forceDelete(FileUtils.java:2279)
at org.apache.commons.io.FileUtils.cleanDirectory(FileUtils.java:1653)
at com.foo.bar.manager.ArchiveManagerTest.tearDown(ArchiveManagerTest.java:48)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:36)
at com.xtremelabs.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:292)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:252)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:141)
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:112)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)
at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)
at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75)
この問題を克服する方法はありますか? 私は何か重要なものを見逃していると確信していますが、私が言ったように、このトピックに関する十分な情報がありません. 前もって感謝します。