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.DirectoryNotEmptyException;
     23 import java.nio.file.FileSystemException;
     24 import libcore.libcore.util.SerializationTester;
     25 
     26 public class DirectoryNotEmptyExceptionTest extends TestCase {
     27 
     28     public void test_constructor$String() {
     29         DirectoryNotEmptyException exception = new DirectoryNotEmptyException("file");
     30         assertEquals("file", exception.getFile());
     31         assertNull(exception.getOtherFile());
     32         assertNull(exception.getReason());
     33 
     34         assertTrue(exception instanceof FileSystemException);
     35     }
     36 
     37     public void test_serialization() throws IOException, ClassNotFoundException {
     38         String hex = "ACED0005737200286A6176612E6E696F2E66696C652E4469726563746F72794E6F74456D70747"
     39                 + "9457863657074696F6E2A6B773C0727657B020000787200216A6176612E6E696F2E66696C652E466"
     40                 + "96C6553797374656D457863657074696F6ED598F27876D360FC0200024C000466696C657400124C6"
     41                 + "A6176612F6C616E672F537472696E673B4C00056F7468657271007E0002787200136A6176612E696"
     42                 + "F2E494F457863657074696F6E6C8073646525F0AB020000787200136A6176612E6C616E672E45786"
     43                 + "3657074696F6ED0FD1F3E1A3B1CC4020000787200136A6176612E6C616E672E5468726F7761626C6"
     44                 + "5D5C635273977B8CB0300044C000563617573657400154C6A6176612F6C616E672F5468726F77616"
     45                 + "26C653B4C000D64657461696C4D65737361676571007E00025B000A737461636B547261636574001"
     46                 + "E5B4C6A6176612F6C616E672F537461636B5472616365456C656D656E743B4C00147375707072657"
     47                 + "3736564457863657074696F6E737400104C6A6176612F7574696C2F4C6973743B787071007E00097"
     48                 + "07572001E5B4C6A6176612E6C616E672E537461636B5472616365456C656D656E743B02462A3C3CF"
     49                 + "D22390200007870000000097372001B6A6176612E6C616E672E537461636B5472616365456C656D6"
     50                 + "56E746109C59A2636DD8502000449000A6C696E654E756D6265724C000E6465636C6172696E67436"
     51                 + "C61737371007E00024C000866696C654E616D6571007E00024C000A6D6574686F644E616D6571007"
     52                 + "E00027870000000267400346C6962636F72652E6A6176612E6E696F2E66696C652E4469726563746"
     53                 + "F72794E6F74456D707479457863657074696F6E546573747400234469726563746F72794E6F74456"
     54                 + "D707479457863657074696F6E546573742E6A617661740012746573745F73657269616C697A61746"
     55                 + "96F6E7371007E000CFFFFFFFE7400186A6176612E6C616E672E7265666C6563742E4D6574686F647"
     56                 + "4000B4D6574686F642E6A617661740006696E766F6B657371007E000C000000F9740028766F67617"
     57                 + "22E7461726765742E6A756E69742E4A756E69743324566F6761724A556E69745465737474000B4A7"
     58                 + "56E6974332E6A61766174000372756E7371007E000C00000063740020766F6761722E74617267657"
     59                 + "42E6A756E69742E4A556E697452756E6E657224317400104A556E697452756E6E65722E6A6176617"
     60                 + "4000463616C6C7371007E000C0000005C740020766F6761722E7461726765742E6A756E69742E4A5"
     61                 + "56E697452756E6E657224317400104A556E697452756E6E65722E6A61766174000463616C6C73710"
     62                 + "07E000C000000ED74001F6A6176612E7574696C2E636F6E63757272656E742E46757475726554617"
     63                 + "36B74000F4675747572655461736B2E6A61766174000372756E7371007E000C0000046D7400276A6"
     64                 + "176612E7574696C2E636F6E63757272656E742E546872656164506F6F6C4578656375746F7274001"
     65                 + "7546872656164506F6F6C4578656375746F722E6A61766174000972756E576F726B65727371007E0"
     66                 + "00C0000025F74002E6A6176612E7574696C2E636F6E63757272656E742E546872656164506F6F6C4"
     67                 + "578656375746F7224576F726B6572740017546872656164506F6F6C4578656375746F722E6A61766"
     68                 + "174000372756E7371007E000C000002F97400106A6176612E6C616E672E54687265616474000B546"
     69                 + "8726561642E6A61766174000372756E7372001F6A6176612E7574696C2E436F6C6C656374696F6E7"
     70                 + "324456D7074794C6973747AB817B43CA79EDE02000078707874000466696C6570";
     71         DirectoryNotEmptyException exception = (DirectoryNotEmptyException) SerializationTester
     72                 .deserializeHex(hex);
     73 
     74         String hex1 = SerializationTester.serializeHex(exception).toString();
     75         assertEquals(hex, hex1);
     76         assertEquals("file", exception.getFile());
     77         assertNull(exception.getOtherFile());
     78         assertNull(exception.getReason());
     79     }
     80 }
     81