Source Code Cross Referenced for UrlClassLoaderOnlineUTest.java in  » Test-Coverage » GroboUtils » net » sourceforge » groboutils » util » classes » v1 » jdk0 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Test Coverage » GroboUtils » net.sourceforge.groboutils.util.classes.v1.jdk0 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * @(#)UrlClassLoaderOnlineUTest.java      0.9.0 23-May-2001 - 14:40
003:         *
004:         * Copyright (C) 2002-2003 Matt Albrecht
005:         * groboclown@users.sourceforge.net
006:         * http://groboutils.sourceforge.net
007:         *
008:         *  Permission is hereby granted, free of charge, to any person obtaining a
009:         *  copy of this software and associated documentation files (the "Software"),
010:         *  to deal in the Software without restriction, including without limitation
011:         *  the rights to use, copy, modify, merge, publish, distribute, sublicense,
012:         *  and/or sell copies of the Software, and to permit persons to whom the
013:         *  Software is furnished to do so, subject to the following conditions:
014:         *
015:         *  The above copyright notice and this permission notice shall be included in
016:         *  all copies or substantial portions of the Software.
017:         *
018:         *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
019:         *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
020:         *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
021:         *  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
022:         *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
023:         *  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
024:         *  DEALINGS IN THE SOFTWARE.
025:         */
026:
027:        package net.sourceforge.groboutils.util.classes.v1.jdk0;
028:
029:        import net.sourceforge.groboutils.util.classes.v1.*;
030:        import net.sourceforge.groboutils.junit.v1.iftc.*;
031:        import junit.framework.Test;
032:        import junit.framework.TestCase;
033:        import junit.framework.TestSuite;
034:
035:        /**
036:         * Just like util.http.tests, this uses the Sourceforge account to ensure
037:         * that the URLs work correctly.  It loads the sample applet "BeliefOfTheDay"
038:         * to make sure that this is able to load classes remotely.
039:         * As insurance, this also tests to make sure that the same applet is not
040:         * in the current classpath.
041:         *
042:         * @author    Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
043:         * @version   $Date: 2003/05/06 05:35:01 $
044:         * @since     June 28, 2002
045:         */
046:        public class UrlClassLoaderOnlineUTest extends TestCase {
047:            private static final Class THIS_CLASS = UrlClassLoaderOnlineUTest.class;
048:
049:            public static final String BELIEF_CLASS = IUrlClassLoaderOnlineUTestI.BELIEF_CLASS;
050:            public static final String BELIEF_JAR = IUrlClassLoaderOnlineUTestI.BELIEF_JAR;
051:
052:            public UrlClassLoaderOnlineUTest(String name) {
053:                super (name);
054:            }
055:
056:            public static Test suite() {
057:                InterfaceTestSuite suite = IUrlClassLoaderOnlineUTestI.suite();
058:                suite.addTestSuite(THIS_CLASS);
059:                suite.addFactory(new CxFactory("A") {
060:                    public Object createImplObject() {
061:                        return createLoader();
062:                    }
063:                });
064:
065:                return suite;
066:            }
067:
068:            public static void main(String[] args) {
069:                String[] name = { THIS_CLASS.getName() };
070:
071:                // junit.textui.TestRunner.main( name );
072:                // junit.swingui.TestRunner.main( name );
073:
074:                junit.textui.TestRunner.main(name);
075:            }
076:
077:            protected void setUp() throws Exception {
078:                super .setUp();
079:
080:                // set ourself up
081:            }
082:
083:            protected void tearDown() throws Exception {
084:                // tear ourself down
085:
086:                super .tearDown();
087:            }
088:
089:            protected static UrlClassLoader createLoader() {
090:                return new UrlClassLoader();
091:            }
092:
093:            public void testFlush1() {
094:                // override the original, because we can better test the flushing
095:                // mechanism.
096:
097:                UrlClassLoader loader = createLoader();
098:
099:                // load up bytecode from a separate location
100:                Class c = loader.loadClass(BELIEF_CLASS, BELIEF_JAR);
101:                assertNotNull("loadClass( " + BELIEF_CLASS
102:                        + " ) returned null.", c);
103:                assertEquals("loadClass( " + BELIEF_CLASS
104:                        + " ) returned the wrong class.", BELIEF_CLASS, c
105:                        .getName());
106:
107:                // this needs to be run in the same test, to ensure we don't load the
108:                // same class if referenced from a different JAR.
109:                byte b[] = loader.getBytecode(BELIEF_CLASS);
110:                assertNotNull("getBytecode( " + BELIEF_CLASS
111:                        + " ) returned null.", b);
112:                assertTrue("getBytecode( " + BELIEF_CLASS
113:                        + " ) returned no data.", b.length > 0);
114:
115:                loader.flush();
116:
117:                // make sure the bytecode was properly eliminated.
118:                b = loader.getBytecode(BELIEF_CLASS);
119:                assertEquals("getBytecode( " + BELIEF_CLASS
120:                        + " ) did not return null.", null, b);
121:            }
122:
123:            public void testGetBytecode1() {
124:                UrlClassLoader loader = (UrlClassLoader) createLoader();
125:
126:                // load up bytecode from a separate location
127:                Class c = null;
128:                // I've had time-out issues with sourceforge.  Try 3 times.
129:                for (int i = 0; i < 3 && c == null; ++i) {
130:                    c = loader.loadClass(BELIEF_CLASS, BELIEF_JAR);
131:                }
132:                assertNotNull("loadClass( " + BELIEF_CLASS
133:                        + " ) returned null 3 times.", c);
134:                assertEquals("loadClass( " + BELIEF_CLASS
135:                        + " ) returned the wrong class.", BELIEF_CLASS, c
136:                        .getName());
137:
138:                // this needs to be run in the same test, to ensure we don't load the
139:                // same class if referenced from a different JAR.
140:                byte b[] = loader.getBytecode(BELIEF_CLASS);
141:                assertNotNull("getBytecode( " + BELIEF_CLASS
142:                        + " ) returned null.", b);
143:                assertTrue("getBytecode( " + BELIEF_CLASS
144:                        + " ) returned no data.", b.length > 0);
145:            }
146:        }
w___ww_.___j___a_va2_s___.___co_m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.