Home | History | Annotate | Download | only in file
      1 /*
      2  * Copyright (C) 2016 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License
     15  */
     16 
     17 package libcore.java.nio.file;
     18 
     19 import junit.framework.TestCase;
     20 
     21 import java.io.IOException;
     22 import java.nio.file.FileSystemException;
     23 import java.nio.file.NotLinkException;
     24 import libcore.util.SerializationTester;
     25 
     26 public class NotLinkExceptionTest extends TestCase {
     27     public void test_constructor$String() {
     28         NotLinkException exception = new NotLinkException("file");
     29         assertEquals("file", exception.getFile());
     30         assertNull(exception.getOtherFile());
     31         assertNull(exception.getReason());
     32 
     33         assertTrue(exception instanceof FileSystemException);
     34     }
     35 
     36     public void test_constructor$String$String$String() {
     37         NotLinkException exception = new NotLinkException("file", "otherFile", "reason");
     38         assertEquals("file", exception.getFile());
     39         assertEquals("otherFile", exception.getOtherFile());
     40         assertEquals("reason", exception.getReason());
     41     }
     42 
     43     public void test_serialization() throws IOException, ClassNotFoundException {
     44         String hex = "aced00057372001e6a6176612e6e696f2e66696c652e4e6f744c696e6b457863657074696f6ef"
     45                 + "a9b37cb53a0387b020000787200216a6176612e6e696f2e66696c652e46696c6553797374656d457"
     46                 + "863657074696f6ed598f27876d360fc0200024c000466696c657400124c6a6176612f6c616e672f5"
     47                 + "37472696e673b4c00056f7468657271007e0002787200136a6176612e696f2e494f4578636570746"
     48                 + "96f6e6c8073646525f0ab020000787200136a6176612e6c616e672e457863657074696f6ed0fd1f3"
     49                 + "e1a3b1cc4020000787200136a6176612e6c616e672e5468726f7761626c65d5c635273977b8cb030"
     50                 + "0044c000563617573657400154c6a6176612f6c616e672f5468726f7761626c653b4c000d6465746"
     51                 + "1696c4d65737361676571007e00025b000a737461636b547261636574001e5b4c6a6176612f6c616"
     52                 + "e672f537461636b5472616365456c656d656e743b4c0014737570707265737365644578636570746"
     53                 + "96f6e737400104c6a6176612f7574696c2f4c6973743b787071007e0009740006726561736f6e757"
     54                 + "2001e5b4c6a6176612e6c616e672e537461636b5472616365456c656d656e743b02462a3c3cfd223"
     55                 + "90200007870000000097372001b6a6176612e6c616e672e537461636b5472616365456c656d656e7"
     56                 + "46109c59a2636dd8502000449000a6c696e654e756d6265724c000e6465636c6172696e67436c617"
     57                 + "37371007e00024c000866696c654e616d6571007e00024c000a6d6574686f644e616d6571007e000"
     58                 + "278700000002c74002a6c6962636f72652e6a6176612e6e696f2e66696c652e4e6f744c696e6b457"
     59                 + "863657074696f6e546573747400194e6f744c696e6b457863657074696f6e546573742e6a6176617"
     60                 + "40012746573745f73657269616c697a6174696f6e7371007e000dfffffffe7400186a6176612e6c6"
     61                 + "16e672e7265666c6563742e4d6574686f6474000b4d6574686f642e6a617661740006696e766f6b6"
     62                 + "57371007e000d000000f9740028766f6761722e7461726765742e6a756e69742e4a756e697433245"
     63                 + "66f6761724a556e69745465737474000b4a756e6974332e6a61766174000372756e7371007e000d0"
     64                 + "0000063740020766f6761722e7461726765742e6a756e69742e4a556e697452756e6e65722431740"
     65                 + "0104a556e697452756e6e65722e6a61766174000463616c6c7371007e000d0000005c740020766f6"
     66                 + "761722e7461726765742e6a756e69742e4a556e697452756e6e657224317400104a556e697452756"
     67                 + "e6e65722e6a61766174000463616c6c7371007e000d000000ed74001f6a6176612e7574696c2e636"
     68                 + "f6e63757272656e742e4675747572655461736b74000f4675747572655461736b2e6a61766174000"
     69                 + "372756e7371007e000d0000046d7400276a6176612e7574696c2e636f6e63757272656e742e54687"
     70                 + "2656164506f6f6c4578656375746f72740017546872656164506f6f6c4578656375746f722e6a617"
     71                 + "66174000972756e576f726b65727371007e000d0000025f74002e6a6176612e7574696c2e636f6e6"
     72                 + "3757272656e742e546872656164506f6f6c4578656375746f7224576f726b6572740017546872656"
     73                 + "164506f6f6c4578656375746f722e6a61766174000372756e7371007e000d000002f97400106a617"
     74                 + "6612e6c616e672e54687265616474000b5468726561642e6a61766174000372756e7372001f6a617"
     75                 + "6612e7574696c2e436f6c6c656374696f6e7324456d7074794c6973747ab817b43ca79ede0200007"
     76                 + "8707874000466696c657400096f7468657246696c65";
     77         NotLinkException exception = (NotLinkException) SerializationTester.deserializeHex(hex);
     78 
     79         String hex1 = SerializationTester.serializeHex(exception).toString();
     80         assertEquals(hex, hex1);
     81         assertEquals("file", exception.getFile());
     82         assertEquals("otherFile", exception.getOtherFile());
     83         assertEquals("reason", exception.getReason());
     84     }
     85 }
     86