Source Code Cross Referenced for TestJarRelationshipDecorator.java in  » Code-Analyzer » JarAnalyzer » com » kirkk » analyzer » framework » bcelbundle » test » 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 » Code Analyzer » JarAnalyzer » com.kirkk.analyzer.framework.bcelbundle.test 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.kirkk.analyzer.framework.bcelbundle.test;
002:
003:        import junit.framework.*;
004:        import java.io.*;
005:        import com.kirkk.analyzer.framework.bcelbundle.*;
006:        import com.kirkk.analyzer.framework.*;
007:        import com.kirkk.analyzer.framework.JarCollection;
008:        import java.util.*;
009:
010:        public class TestJarRelationshipDecorator extends TestCase {
011:            public void testOutgoingJarRelationships() throws Exception {
012:                JarCollection jarCollection = new JarRelationshipDecorator(
013:                        new JarCollectionImpl(new File(
014:                                "testdata/acyclictestproject/dist"),
015:                                new ArrayList()));
016:                assertEquals(jarCollection.getJarCount(), 2);
017:                jarCollection.first();
018:
019:                Jar jar1 = jarCollection.getJar("Test1.jar");
020:                Jar jar2 = jarCollection.getJar("Test2.jar");
021:                assertNotNull("Jar1 is null", jar1);
022:                assertNotNull("Jar2 is null", jar2);
023:
024:                List jar2OutgoingDependencies = jar2.getOutgoingDependencies();
025:                List jar1OutgoingDependencis = jar1.getOutgoingDependencies();
026:                assertTrue("jar2 should be dependent on jar1",
027:                        jar2OutgoingDependencies.contains(jar1));
028:                assertTrue("jar1 should not be dependent on jar2",
029:                        !jar1OutgoingDependencis.contains(jar2));
030:
031:            }
032:
033:            public void testIncomingJarRelationships() throws Exception {
034:                JarCollection jarCollection = new JarRelationshipDecorator(
035:                        new JarCollectionImpl(new File(
036:                                "testdata/acyclictestproject/dist"),
037:                                new ArrayList()));
038:                assertEquals(jarCollection.getJarCount(), 2);
039:                jarCollection.first();
040:
041:                Jar jar1 = jarCollection.getJar("Test1.jar");
042:                Jar jar2 = jarCollection.getJar("Test2.jar");
043:                assertNotNull("Jar1 is null", jar1);
044:                assertNotNull("Jar2 is null", jar2);
045:
046:                List jar2IncomingDependencies = jar2.getIncomingDependencies();
047:                List jar1IncomingDependencis = jar1.getIncomingDependencies();
048:                assertTrue("jar2 should not have any incoming dependncies",
049:                        !jar2IncomingDependencies.contains(jar1));
050:                assertTrue("jar1 should have jar2 as an incoming dependency",
051:                        jar1IncomingDependencis.contains(jar2));
052:
053:            }
054:
055:            public void testCylicJars() throws Exception {
056:                JarCollection jarCollection = new JarRelationshipDecorator(
057:                        new JarCollectionImpl(new File(
058:                                "testdata/cyclictestproject/dist"),
059:                                new ArrayList()));
060:                assertEquals(jarCollection.getJarCount(), 2);
061:                jarCollection.first();
062:
063:                Jar jar1 = jarCollection.getJar("Test1.jar");
064:                Jar jar2 = jarCollection.getJar("Test2.jar");
065:                assertNotNull("Jar1 is null", jar1);
066:                assertNotNull("Jar2 is null", jar2);
067:
068:                assertTrue("Jar1 should have a cycle", jar1.hasCycles());
069:                assertTrue("Jar2 should have a cycle", jar2.hasCycles());
070:
071:                List jar1Cycles = jar1.getCyclicJars();
072:                assertTrue("Jar1 should have a cycle with Jar2", jar1Cycles
073:                        .contains(jar2));
074:
075:                List jar2Cycles = jar2.getCyclicJars();
076:                assertTrue("Jar2 should have a cycle with Jar1", jar2Cycles
077:                        .contains(jar1));
078:            }
079:
080:            public void testDecoratorToArray() throws Exception {
081:                JarCollection jarCollection = new JarRelationshipDecorator(
082:                        new JarCollectionImpl(new File(
083:                                "testdata/acyclictestproject/dist")));
084:                Jar[] jar = jarCollection.toArray();
085:                assertEquals("Array size should be 2", 2, jar.length);
086:
087:                assertTrue((jar[0].getJarFileName().equals("Test1.jar"))
088:                        || (jar[0].getJarFileName().equals("Test2.jar")));
089:            }
090:
091:            /*public void testDupPackageSpanningJars() throws Exception {
092:            	JarCollection jarCollection = new JarRelationshipDecorator(new JarCollectionImpl(new File("testdata/samepackagespansjars/dist")));
093:
094:            	Jar jar1 = jarCollection.getJar("Test1.jar");
095:            	Jar jar2 = jarCollection.getJar("Test2.jar");
096:
097:            	System.out.println(jar1.hasCycles());
098:            	System.out.println(jar2.hasCycles());
099:            }*/
100:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.