Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *  Copyright: 2010 Regents of the University of California and the
4
 *              National Center for Ecological Analysis and Synthesis
5
 *  Purpose: To test the Access Controls in metacat by JUnit
6
 *
7
 *   '$Author: berkley $'
8
 *     '$Date: 2010-05-03 14:26:08 -0700 (Fri, 14 Aug 2009) $'
9
 * '$Revision: 5027 $'
10
 *
11
 * This program is free software; you can redistribute it and/or modify
12
 * it under the terms of the GNU General Public License as published by
13
 * the Free Software Foundation; either version 2 of the License, or
14
 * (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU General Public License
22
 * along with this program; if not, write to the Free Software
23
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
 */
25

    
26
package edu.ucsb.nceas.metacat.restservice;
27

    
28
import java.util.*;
29
import java.io.*;
30

    
31
import edu.ucsb.nceas.MCTestCase;
32
import edu.ucsb.nceas.metacat.dataone.CrudServiceTest;
33

    
34
import junit.framework.Test;
35
import junit.framework.TestSuite;
36

    
37
import org.apache.commons.io.IOUtils;
38

    
39
/**
40
 * @author berkley
41
 * class to test ResourceHandler
42
 */
43
public class ResourceHandlerTest extends MCTestCase
44
{
45
    public ResourceHandlerTest(String name)
46
    {
47
        super(name);
48
    }
49

    
50
    /**
51
     * Create a suite of tests to be run together
52
     */
53
    public static Test suite() 
54
    {
55
        TestSuite suite = new TestSuite();
56
        
57
        //suite.addTest(new ResourceHandlerTest("testFindBoundary"));        
58
        suite.addTest(new ResourceHandlerTest("testProcessMMP"));
59

    
60
        return suite;
61
    }
62
    
63
    public void testFindBoundary()
64
    {
65
        try
66
        {
67
            File f = new File("test/testMimeInput.txt");
68
            FileInputStream fis = new FileInputStream(f);
69
            String[] s = ResourceHandler.findBoundaryString(fis);
70
            assertEquals(s[0], "--1288304583346");
71
            //System.out.println("r: " + s[1].trim());
72
            assertTrue(s[1].trim().startsWith(s[0]));
73
        }
74
        catch(Exception e)
75
        {
76
            fail("unexpected error in testFindBoundary: " + e.getMessage());
77
        }
78
    }
79
    
80
    public void testProcessMMP()
81
    {
82
        try
83
        {
84
            File f = new File("test/testMimeInput.txt");
85
            FileInputStream fis = new FileInputStream(f);
86
            ResourceHandler rh = new ResourceHandler(null, null, null);
87
            Hashtable<String, File> h = rh.processMMP(fis);
88
            FileInputStream smFis = new FileInputStream(h.get("sysmeta"));
89
            FileInputStream objFis = new FileInputStream(h.get("object"));
90
            String sm = IOUtils.toString(smFis);
91
            String obj = IOUtils.toString(objFis);
92
            System.out.println("sm: " + sm);
93
            System.out.println("obj: " + obj);
94
            /*assertTrue(obj.indexOf("<test>") != -1);
95
            assertTrue(sm.indexOf("<d1:systemMetadata") != -1);
96
            assertTrue(sm.indexOf("</d1:systemMetadata>") != -1);
97
            assertTrue(obj.indexOf("</test>") != -1);*/
98
        }
99
        catch(Exception e)
100
        {
101
            e.printStackTrace();
102
            fail("Unexpected error in testProcessMMP: " + e.getMessage());
103
        }
104
        
105
    }
106
}
    (1-1/1)