(no commit message)
[utils] / support / test / org / wamblee / io / FileResourceTest.java
1 /*
2  * Copyright 2005 the original author or authors.
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 org.wamblee.io;
18
19 import java.io.File;
20 import java.io.IOException;
21 import java.io.InputStream;
22
23 import org.wamblee.test.FileSystemUtils;
24
25 import junit.framework.TestCase;
26
27 /**
28  * Tests the file resource. 
29  */
30 public class FileResourceTest extends TestCase {
31
32     /**
33      * Loads an existing resource. Verifies it is found.
34      * 
35      */
36     public void testResourceFound() throws IOException {
37         FileResource resource = new FileResource( new File(
38                 FileSystemUtils.getTestInputDir(FileResourceTest.class), 
39                 "myresource.txt"));
40         InputStream is = resource.getInputStream();
41         String data = FileSystemUtils.read(is);
42         assertEquals("This is my resource", data);
43     }
44
45     /**
46      * Loads a non-existing resource. Verifies that an IO
47      * exception is thrown.
48      * 
49      */
50     public void testResourceNotFound() {
51         try {
52             FileResource resource = new FileResource( new File(
53                     FileSystemUtils.getTestInputDir(FileResourceTest.class), 
54                     "myresource-nonexistent.txt"));
55             InputStream is = resource.getInputStream();
56         } catch (IOException e) {
57             return; // ok
58         }
59         fail();
60     }
61 }