blob: baa11103e5991b9308b0b88c992d5eac30052252 [file] [log] [blame]
/*
* Copyright (C) 2016 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 libcore.java.nio.file;
import junit.framework.TestCase;
import java.io.IOException;
import java.nio.file.AccessDeniedException;
import java.nio.file.FileSystemException;
import libcore.util.SerializationTester;
public class AccessDeniedExceptionTest extends TestCase {
public void test_constructor$String() {
AccessDeniedException exception = new AccessDeniedException("file");
assertEquals("file", exception.getFile());
assertNull(exception.getOtherFile());
assertNull(exception.getReason());
assertTrue(exception instanceof FileSystemException);
}
public void test_constructor$String$String$String() {
AccessDeniedException exception = new AccessDeniedException("file", "otherFile", "reason");
assertEquals("file", exception.getFile());
assertEquals("otherFile", exception.getOtherFile());
assertEquals("reason", exception.getReason());
}
public void test_serialization() throws IOException, ClassNotFoundException {
String hex = "aced0005737200236a6176612e6e696f2e66696c652e41636365737344656e6965644578"
+ "63657074696f6e44993d6bf81c2721020000787200216a6176612e6e696f2e66696c652e46696c65"
+ "53797374656d457863657074696f6ed598f27876d360fc0200024c000466696c657400124c6a6176"
+ "612f6c616e672f537472696e673b4c00056f7468657271007e0002787200136a6176612e696f2e49"
+ "4f457863657074696f6e6c8073646525f0ab020000787200136a6176612e6c616e672e4578636570"
+ "74696f6ed0fd1f3e1a3b1cc4020000787200136a6176612e6c616e672e5468726f7761626c65d5c6"
+ "35273977b8cb0300044c000563617573657400154c6a6176612f6c616e672f5468726f7761626c65"
+ "3b4c000d64657461696c4d65737361676571007e00025b000a737461636b547261636574001e5b4c"
+ "6a6176612f6c616e672f537461636b5472616365456c656d656e743b4c0014737570707265737365"
+ "64457863657074696f6e737400104c6a6176612f7574696c2f4c6973743b787071007e0009740006"
+ "726561736f6e7572001e5b4c6a6176612e6c616e672e537461636b5472616365456c656d656e743b"
+ "02462a3c3cfd22390200007870000000097372001b6a6176612e6c616e672e537461636b54726163"
+ "65456c656d656e746109c59a2636dd8502000449000a6c696e654e756d6265724c000e6465636c61"
+ "72696e67436c61737371007e00024c000866696c654e616d6571007e00024c000a6d6574686f644e"
+ "616d6571007e000278700000002674002f6c6962636f72652e6a6176612e6e696f2e66696c652e41"
+ "636365737344656e696564457863657074696f6e5465737474001e41636365737344656e69656445"
+ "7863657074696f6e546573742e6a617661740025746573745f636f6e7374727563746f7224537472"
+ "696e6724537472696e6724537472696e677371007e000dfffffffe7400186a6176612e6c616e672e"
+ "7265666c6563742e4d6574686f6474000b4d6574686f642e6a617661740006696e766f6b65737100"
+ "7e000d000000f9740028766f6761722e7461726765742e6a756e69742e4a756e69743324566f6761"
+ "724a556e69745465737474000b4a756e6974332e6a61766174000372756e7371007e000d00000063"
+ "740020766f6761722e7461726765742e6a756e69742e4a556e697452756e6e657224317400104a55"
+ "6e697452756e6e65722e6a61766174000463616c6c7371007e000d0000005c740020766f6761722e"
+ "7461726765742e6a756e69742e4a556e697452756e6e657224317400104a556e697452756e6e6572"
+ "2e6a61766174000463616c6c7371007e000d000000ed74001f6a6176612e7574696c2e636f6e6375"
+ "7272656e742e4675747572655461736b74000f4675747572655461736b2e6a61766174000372756e"
+ "7371007e000d0000046d7400276a6176612e7574696c2e636f6e63757272656e742e546872656164"
+ "506f6f6c4578656375746f72740017546872656164506f6f6c4578656375746f722e6a6176617400"
+ "0972756e576f726b65727371007e000d0000025f74002e6a6176612e7574696c2e636f6e63757272"
+ "656e742e546872656164506f6f6c4578656375746f7224576f726b6572740017546872656164506f"
+ "6f6c4578656375746f722e6a61766174000372756e7371007e000d000002f97400106a6176612e6c"
+ "616e672e54687265616474000b5468726561642e6a61766174000372756e7372001f6a6176612e75"
+ "74696c2e436f6c6c656374696f6e7324456d7074794c6973747ab817b43ca79ede02000078707874"
+ "000466696c657400096f7468657246696c65";
AccessDeniedException exception = (AccessDeniedException)
SerializationTester.deserializeHex(hex);
String hex1 = SerializationTester.serializeHex(exception).toString();
assertEquals(hex, hex1);
assertEquals("file", exception.getFile());
assertEquals("otherFile", exception.getOtherFile());
assertEquals("reason", exception.getReason());
}
}