OSDN Git Service

git-svn-id: http://www.xerial.org/svn/project/XerialJ/trunk/xerial-core@2953 ae02f08e...
[xerial/xerial-core.git] / src / test / java / org / xerial / util / FileTypeTest.java
1 /*--------------------------------------------------------------------------
2  *  Copyright 2009 Taro L. Saito
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 // XerialJ
18 //
19 // FileTypeTest.java
20 // Since: Feb 10, 2009 11:13:40 AM
21 //
22 // $URL$
23 // $Author$
24 //--------------------------------------
25 package org.xerial.util;
26
27 import static org.junit.Assert.assertEquals;
28
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32
33 public class FileTypeTest
34 {
35
36     @Before
37     public void setUp() throws Exception
38     {}
39
40     @After
41     public void tearDown() throws Exception
42     {}
43
44     @Test
45     public void testGetFileType()
46     {
47         assertEquals(FileType.PNG, FileType.getFileType("png"));
48         assertEquals(FileType.JPEG, FileType.getFileType("jpg"));
49         assertEquals(FileType.JPEG, FileType.getFileType("jpeg"));
50
51         for (FileType eachType : FileType.values())
52         {
53             for (String eachFileExt : eachType.getFileExtList())
54                 assertEquals(eachType, FileType.getFileType(eachFileExt));
55         }
56
57     }
58
59 }