aboutsummaryrefslogtreecommitdiffstats
path: root/tests/netx
Commit message (Collapse)AuthorAgeFilesLines
* JNLPClassLoader unit tests for file leaksAdam Domurad2013-04-231-0/+263
|
* Rewrite of MethodOverloadResolverAdam Domurad2013-04-231-0/+383
|
* Move normalizeUrlAndStripParams to UrlUtilsAdam Domurad2013-03-282-20/+30
|
* Integration of unsigned applet confirmation dialogue.Adam Domurad2013-03-261-0/+59
|
* Path validator fixed to be correctly multiplatformJiri Vanek2013-03-261-0/+133
|
* Revert behaviour of PluginParameterParser#isInt to fail on overflowAdam Domurad2013-03-221-0/+4
|
* UnsignedAppletActionStorageImpl: (isMatching) is now ignring archives if empty.Jiri Vanek2013-03-221-1/+21
|
* Added tests for German i18nJiri Vanek2013-03-131-62/+136
| | | | | | | | * tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java: Enhanced to test also German localization . * tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java: Enhanced to handle de messages and be prepared for locales with one language but different nations
* Added backend and settings for extended applet securityJiri Vanek2013-02-272-0/+346
|
* Add unit tests for locales and locales fixedJiri Vanek2013-01-301-0/+244
| | | | | | | | * netx/net/sourceforge/jnlp/resources/Messages.properties: * netx/net/sourceforge/jnlp/resources/Messages_cs_CZ.properties: Added missing, filled empty and removed dangling items * tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java: New unittest for missing, empty, duplicate or dangling locales.
* Fix for PR1292: Javaws does not resolve versioned jar names with periods ↵Adam Domurad2013-01-301-0/+43
| | | | properly
* Splashscreen error report made more detailed by stored LaunchErrorsJiri Vanek2013-01-301-4/+5
| | | | | | | | | | | | | | | * netx/net/sourceforge/jnlp/LaunchException.java: (LaunchExceptionWithStamp) new inner class for storing timestamp togetehr with error. (launchExceptionChain) new static list to capture LaunchErrors during runtime. * /netx/net/sourceforge/jnlp/resources/Messages.properties: * netx/net/sourceforge/jnlp/resources/Messages_cs_CZ.properties: Added explanation string * netx/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialog.java: Is now displaying launchExceptionChain in its error report and is copying it to clipboard. * tests/unit/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialogTest.java: (getTextTest) adapted calls of getText for new Date.
* Unit tests for PR1198: JSObject not passed correctly to JavascriptAdam Domurad2013-01-151-0/+185
|
* First part of fix of recreating desktop iconJiri Vanek2013-01-101-0/+188
| | | | Another fix can be addition of buttons like always/never
* Fixed unittest for InformationElementJiri Vanek2013-01-031-1/+1
|
* Fixed unittest for InformationElementJiri Vanek2013-01-021-1/+1
|
* PR909: Unit test fixSaad Mohammad2012-12-201-5/+7
|
* Added and applied Remote annotation, added Remote tests.Jiri Vanek2012-12-201-0/+9
|
* Cleaned unit-tests in ↵Jiri Vanek2012-12-181-106/+80
| | | | tests/netx/unit/net/sourceforge/jnlp/runtime/CodeBaseClassLoaderTest.java
* Unit tests for PR1189Saad Mohammad2012-12-101-0/+20
|
* Remove redundant HTML-tag scanner from ITW. Do not reconstruct tags.Adam Domurad2012-12-043-23/+217
|
* Unit tests for PR1166Saad Mohammad2012-11-133-1/+286
|
* PR1186: System.getProperty("deployment.user.security.trusted.cacerts") is nullOmair Majid2012-10-291-0/+72
| | | | | Copy deployment configration read into system properties so it is visibile to target programs.
* Fix regression with trivially signed (eg, just META-INF/) jarsAdam Domurad2012-10-191-2/+2
|
* Major rework of JarCertVerifier certificate management.Danesh Dadachanji2012-10-221-2/+468
| | | | | | This is a long-planned rework of JarCertVerifier, allowing it to handle multiple certificates. The algorithms used to verify jars with multiple certificates vary between JNLPs and Applets.
* Fixed long term failing unit-test, fixed NPE from ClassLoaderJiri Vanek2012-08-271-33/+178
| | | | | | | | | | | | | | | * netx/net/sourceforge/jnlp/NullJnlpFileException.java: new class to distinguish plain NPE from null jnlp file. * netx/net/sourceforge/jnlp/SecurityDesc.java: (getSandBoxPermissions) added throw of NullJnlpFileException in case of null jnlp file. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (findClass) added Override annotation, add catch of NullJnlpFileException and re-throw of CNF exception. * tests/netx/unit/net/sourceforge/jnlp/runtime/CodeBaseClassLoaderTest.java: (testResourceLoadSuccessCaching) (testResourceLoadFailureCaching) (testParentClassLoaderIsAskedForClasses) - internal JNLPFile's (getSecurity) null in SecurityDesc constructorrepalced by this. (testNullFileSecurityDesc) new test to ensure NPE in null JNLPFile case.
* Added forgotten license headerAdam Domurad2012-08-141-0/+37
|
* Unit test for JCV.isMetaInfFile()Adam Domurad2012-08-141-0/+17
|
* Added splashscreen implementationJiri Vanek2012-08-1320-0/+3394
|
* Fix PR955: regression: SweetHome3D fails to runDanesh Dadachanji2012-08-082-0/+1464
|
* Fix JNLPMatcherTest timeout from being too restrictive.Danesh Dadachanji2012-08-011-1/+1
|
* Refactored reproducers directry structureJiri Vanek2012-07-0220-2899/+0
|
* Fixed resource tests and Browsers.none behaviorJiri Vanek2012-06-293-11/+35
|
* Fix problem in resolving classesOmair Majid2012-06-281-1/+47
| | | | | | | | | | | | | | | | | The bug manifests when the following sequence of steps happen: 1. An applet with both a codebase and a jar (archive) is loaded 2. A class Foo is loaded using the codebase classloader 3. The Foo class tries to load a class Bar that is specified in the jar archive. The Bar class is not found. The following applet reproduces the problem: http://javadjvu.foxtrottechnologies.com/cgi-bin/djvuapplet.pl/examples/deer.djvu?zoom=page The fix addresses the problem by ensuring that the codebase classloader asks the classloader that knows about the jar archive to resolve classes too.
* Added slipped midori and epiphany to recognized browsers.Jiri Vanek2012-06-261-3/+8
| | | | Wrapped last changelog entry
* removed safe-mode firefox argJiri Vanek2012-06-191-1/+1
|
* Tested and used @TestInBrowserJiri Vanek2012-06-191-15/+256
|
* added default swithces for firefox 13 and higherJiri Vanek2012-06-191-0/+11
|
* testInBrowser annotationJiri Vanek2012-06-1915-15/+736
|
* rewritten deadlock testJiri Vanek2012-06-191-0/+2
|
* Implemented xml logging backendJiri Vanek2012-06-112-34/+241
|
* Added KnownToFail annotationJiri Vanek2012-06-054-0/+35
|
* isDateInRange renamed to isDateInRange_internallForIcedTeaWebTestingJiri Vanek2012-06-051-7/+7
|
* Handle absolute paths passed into jnlp_href's value.Danesh Dadachanji2012-06-041-0/+99
|
* Added ignoration of inner classes during retrieving test idJiri Vanek2012-05-291-0/+6
|
* Get rid of repeated sout/serr in reproducers testcases/unit tests and ↵Jiri Vanek2012-05-284-10/+100
| | | | introduce bottleneck for loging.
* More tests for Spaces and characters in urlsJiri Vanek2012-05-182-0/+153
|
* 2012-05-14 Jiri Vanek <[email protected]>Jiri Vanek2012-05-162-5/+5
| | | | | | | | * tests/netx/unit/net/sourceforge/jnlp/runtime/CodeBaseClassLoaderTest.java: * tests/netx/unit/net/sourceforge/jnlp/cache/CacheLRUWrapperTest.java: System.out replaced with System.err + fixed tabs in previous changelog
* Reduce no. of loads of the cache index fileThomas Meyer2012-05-112-0/+304
|
* Added bug annotation forr testing engineJiri Vanek2012-05-022-0/+50
|