~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jgdi/test/com/sun/grid/jgdi/MapAttributeTestCase.java

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 *
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 *
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 *
 
9
 *
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 *
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 *
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 *
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 *
 
28
 *   All Rights Reserved.
 
29
 *
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
package com.sun.grid.jgdi;
 
33
 
 
34
import com.sun.grid.jgdi.configuration.ClusterQueue;
 
35
import com.sun.grid.jgdi.configuration.xml.XMLUtil;
 
36
import java.io.StringReader;
 
37
import java.io.StringWriter;
 
38
import java.util.List;
 
39
import junit.framework.Test;
 
40
import junit.framework.TestSuite;
 
41
import org.xml.sax.SAXParseException;
 
42
 
 
43
/**
 
44
 *
 
45
 */
 
46
public class MapAttributeTestCase extends BaseTestCase {
 
47
    
 
48
    /** Creates a new instance of MapAttributeTestCase */
 
49
    public MapAttributeTestCase(String name) {
 
50
        super(name);
 
51
    }
 
52
    
 
53
    public static Test suite() {
 
54
        TestSuite suite = new TestSuite(MapAttributeTestCase.class);
 
55
        return suite;
 
56
    }
 
57
    
 
58
    public void testClusterQueueRerun() throws Exception {
 
59
        
 
60
        JGDI jgdi = createJGDI();
 
61
        try {
 
62
            List<ClusterQueue> queueList = jgdi.getClusterQueueList();
 
63
            for (ClusterQueue queue : queueList) {
 
64
                logger.info(queue.getName() + "------------");
 
65
                for (String key : queue.getRerunKeys()) {
 
66
                    logger.info("rerun: " + key + "=" + queue.getRerun(key));
 
67
                    queue.putRerun(key, !queue.getRerun(key));
 
68
                }
 
69
                queue.setName("blubber_" + queue.getName());
 
70
                queue.addPe("@/", "make");
 
71
                StringWriter sw = new StringWriter();
 
72
                XMLUtil.write(queue, sw);
 
73
                sw.flush();
 
74
                logger.fine(sw.getBuffer().toString());
 
75
                
 
76
                try {
 
77
                    queue = (ClusterQueue) XMLUtil.read(new StringReader(sw.getBuffer().toString()));
 
78
                    XMLUtil.write(queue, System.out);
 
79
                } catch (SAXParseException spe) {
 
80
                    logger.severe("Error in [" + spe.getLineNumber() + ":" + spe.getColumnNumber() + "]:" + spe.getMessage());
 
81
                    throw spe;
 
82
                }
 
83
                
 
84
                //         pe = new ST();
 
85
                //         pe.setName("make");
 
86
                //         queue.addPe("oin", pe);
 
87
                //         jgdi.addClusterQueue(queue);
 
88
                //jgdi.deleteClusterQueue(queue);
 
89
            }
 
90
        } finally {
 
91
            jgdi.close();
 
92
        }
 
93
    }
 
94
}