Add API 31 sources Test: None Change-Id: Ie45894f7a232b2a15e2439b2527ca1813f334cc5
diff --git a/mypackage/MockFileSystem.java b/mypackage/MockFileSystem.java new file mode 100644 index 0000000..6981186 --- /dev/null +++ b/mypackage/MockFileSystem.java
@@ -0,0 +1,117 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +package mypackage; + +import java.io.IOException; +import java.net.URI; +import java.nio.file.FileStore; +import java.nio.file.FileSystem; +import java.nio.file.Path; +import java.nio.file.PathMatcher; +import java.nio.file.WatchService; +import java.nio.file.attribute.UserPrincipalLookupService; +import java.nio.file.spi.FileSystemProvider; +import java.util.Map; +import java.util.Set; + +public class MockFileSystem extends FileSystem { + private URI uri; + private Map<String, ?> env; + private Path path; + + public MockFileSystem(URI uri, Map<String, ?> env) { + this.uri = uri; + this.env = env; + } + + public MockFileSystem(Path path, Map<String, ?> env) { + this.path = path; + this.env = env; + } + + public URI getURI() { + return uri; + } + + public Path getPath() { + return path; + } + + public Map<String, ?> getEnv() { + return env; + } + + @Override + public FileSystemProvider provider() { + return null; + } + + @Override + public void close() throws IOException { + + } + + @Override + public boolean isOpen() { + return false; + } + + @Override + public boolean isReadOnly() { + return false; + } + + @Override + public String getSeparator() { + return null; + } + + @Override + public Iterable<Path> getRootDirectories() { + return null; + } + + @Override + public Iterable<FileStore> getFileStores() { + return null; + } + + @Override + public Set<String> supportedFileAttributeViews() { + return null; + } + + @Override + public Path getPath(String first, String... more) { + return null; + } + + @Override + public PathMatcher getPathMatcher(String syntaxAndPattern) { + return null; + } + + @Override + public UserPrincipalLookupService getUserPrincipalLookupService() { + return null; + } + + @Override + public WatchService newWatchService() throws IOException { + return null; + } +}
diff --git a/mypackage/MockFileSystemProvider.java b/mypackage/MockFileSystemProvider.java new file mode 100644 index 0000000..9ccd8dc --- /dev/null +++ b/mypackage/MockFileSystemProvider.java
@@ -0,0 +1,139 @@ +/* + * Copyright (C) 2017 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +package mypackage; + +import java.io.IOException; +import java.net.URI; +import java.nio.channels.SeekableByteChannel; +import java.nio.file.AccessMode; +import java.nio.file.CopyOption; +import java.nio.file.DirectoryStream; +import java.nio.file.FileStore; +import java.nio.file.FileSystem; +import java.nio.file.LinkOption; +import java.nio.file.OpenOption; +import java.nio.file.Path; +import java.nio.file.attribute.BasicFileAttributes; +import java.nio.file.attribute.FileAttribute; +import java.nio.file.attribute.FileAttributeView; +import java.nio.file.spi.FileSystemProvider; +import java.util.Map; +import java.util.Set; + +public class MockFileSystemProvider extends FileSystemProvider { + + @Override + public String getScheme() { + return "stubScheme"; + } + + @Override + public FileSystem newFileSystem(URI uri, Map<String, ?> env) throws IOException { + return new MockFileSystem(uri, env); + } + + @Override + public FileSystem newFileSystem(Path path, Map<String, ?> env) throws IOException { + return new MockFileSystem(path, env); + } + + @Override + public FileSystem getFileSystem(URI uri) { + return null; + } + + @Override + public Path getPath(URI uri) { + return null; + } + + @Override + public SeekableByteChannel newByteChannel(Path path, Set<? extends OpenOption> options, + FileAttribute<?>[] attrs) throws IOException { + return null; + } + + @Override + public DirectoryStream<Path> newDirectoryStream(Path dir, + DirectoryStream.Filter<? super Path> filter) throws IOException { + return null; + } + + @Override + public void createDirectory(Path dir, FileAttribute<?>[] attrs) throws IOException { + + } + + @Override + public void delete(Path path) throws IOException { + + } + + @Override + public void copy(Path source, Path target, CopyOption... options) throws IOException { + + } + + @Override + public void move(Path source, Path target, CopyOption... options) throws IOException { + + } + + @Override + public boolean isSameFile(Path path, Path path2) throws IOException { + return false; + } + + @Override + public boolean isHidden(Path path) throws IOException { + return false; + } + + @Override + public FileStore getFileStore(Path path) throws IOException { + return null; + } + + @Override + public void checkAccess(Path path, AccessMode... modes) throws IOException { + + } + + @Override + public <V extends FileAttributeView> V getFileAttributeView(Path path, Class<V> type, + LinkOption... options) { + return null; + } + + @Override + public <A extends BasicFileAttributes> A readAttributes(Path path, Class<A> type, + LinkOption... options) throws IOException { + return null; + } + + @Override + public Map<String, Object> readAttributes(Path path, String attributes, + LinkOption... options) throws IOException { + return null; + } + + @Override + public void setAttribute(Path path, String attribute, Object value, LinkOption... options) + throws IOException { + + } +}
diff --git a/mypackage/package-info.java b/mypackage/package-info.java new file mode 100644 index 0000000..38a04c4 --- /dev/null +++ b/mypackage/package-info.java
@@ -0,0 +1,5 @@ +/** + * The classes in the package are used by {@link libcore.java.nio.file.FileSystemsTest + * FileSystemsTest}. The tests creates a custom classloader which loads these classes. + */ +package mypackage; \ No newline at end of file