aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Added reproducer for applets taking last paramAdam Domurad2012-06-044-0/+236
|
* Added signed jnlp file testsSaad Mohammad2012-06-0434-0/+2021
|
* Handle absolute paths passed into jnlp_href's value.Danesh Dadachanji2012-06-041-0/+99
|
* handling of multiple testing certificates in bulkJiri Vanek2012-05-301-0/+5
|
* 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-2827-332/+137
| | | | introduce bottleneck for loging.
* Fixed security tests to pass both jdk6 and 7Jiri Vanek2012-05-229-25/+24
|
* More tests for Spaces and characters in urlsJiri Vanek2012-05-1813-2/+1048
|
* 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
* 2012-05-14 Jiri Vanek <[email protected]>Jiri Vanek2012-05-161-30/+30
| | | | | * tests/junit-runner/JunitLikeXmlOutputListener.java: fixed indentation and spacing
* Reduce no. of loads of the cache index fileThomas Meyer2012-05-112-0/+304
|
* Added bug annotation forr testing engineJiri Vanek2012-05-027-4/+220
|
* Spelling fixesThomas Meyer2012-04-201-54/+52
|
* PR918: java applet windows uses a low resulution black/white iconOmair Majid2012-04-191-0/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2012-04-19 Omair Majid <[email protected]> * NEWS: Update with fix. * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java: Remove windowIcon. (initialize): Do not call loadWindowIcon. (getWindowIcon): Remove. (setWindowIcon): Remove. (loadWindowIcon): Remove. * netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java (checkTopLevelWindow): Do not set the icon for all top level windows. Use the default java icon instead. * netx/net/sourceforge/jnlp/util/ImageResources.java: New file. Provides access to icons. * netx/net/sourceforge/jnlp/JNLPSplashScreen.java (JNLPSplashScreen), * netx/net/sourceforge/jnlp/cache/DefaultDownloadIndicator.java (getListener), * netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java (AdvancedProxySettingsDialog), * netx/net/sourceforge/jnlp/controlpanel/CacheViewer.java (CacheViewer), * netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java (ControlPanel), * netx/net/sourceforge/jnlp/security/SecurityDialog.java (SecurityDialog), * netx/net/sourceforge/jnlp/security/viewer/CertificateViewer.java (CertificateViewer), * netx/net/sourceforge/jnlp/util/BasicExceptionDialog.java (show), * plugin/icedteanp/java/sun/applet/JavaConsole.java (initialize): Explicitly load icons. * tests/netx/unit/net/sourceforge/jnlp/util/ImageResourcesTest.java: Test for ImageResources class.
* Added possibility to run signed applets during reproducers runs.Jiri Vanek2012-04-184-0/+290
| | | | Added example reproducer.
* minor typos fixesJiri Vanek2012-04-171-2/+2
|
* Fixed xfork test with kill signalJiri Vanek2012-04-171-29/+85
|
* Validate the recently_used file at every load. This will fix the StringIndex-Thomas Meyer2012-04-101-15/+78
| | | | | | OutOfBoundsException for a corrupted path entry thrown in CacheUtil.pathToURLPath(). This Exception was catched in RessourceTracker.Downloader.run() and only printed in debug mode.
* fixed bugs in jnlp testing engineJiri Vanek2012-04-051-33/+163
|
* Changed the vendor and homepage tags of all JNLPs in the testsuite to point ↵Danesh Dadachanji2012-04-0355-86/+86
| | | | to IcedTea.
* Fix pac testsOmair Majid2012-04-031-168/+257
| | | | | | | | | | | | | | | | | | | The testDateRange* tests were rewritten so date wrapping is handled correctly. Also fixes two bugs in pac-funcs.js (a missed return value and using getYear instead of getFullYear). 2012-04-03 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/runtime/pac-funcs.js: Replace incorrect use of getYear() with getFullYear(). (inYearMonthDateRange): Add missing conditional case. * tests/netx/pac/pac-funcs-test.js (runTest): New function. (runTests): Call runTest. (incDate): Deal with month/year wrapping around. (decDate): Removed. (testDateRange, testDateRange2, testDateRange3): Handle wrapping of month and days.
* Test virtual server thread marked as daeomn by defaultJiri Vanek2012-04-031-3/+16
|
* PR898: signed applications with big jnlp-file doesn't startOmair Majid2012-03-221-3/+36
| | | | | | JNLPMatcher was using PipedInputStream and PipedOutputStream without threads which was deadlocking on large files. Use ByteArrayOutputStream instead to avoid this.
* Fix unit test missing title and vendor tags in JNLP stream.Danesh Dadachanji2012-03-191-1/+2
|
* added splash screen tests for upcoming splashscreenJiri Vanek2012-03-1912-19/+689
|
* Fix JNLP parser to halt when required title and vendor elements are missing.Danesh Dadachanji2012-03-165-0/+283
|
* PR895: IcedTea-Web searches for missing classes on each loadClass or findClassDeepak Bhole2012-03-141-0/+142
|
* Launch errors are not being printed to terminalOmair Majid2012-03-142-0/+201
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2012-03-14 Omair Majid <[email protected]> Print exceptions to terminal when running in gui mode too. * netx/net/sourceforge/jnlp/AbstractLaunchHandler.java: New file. * netx/net/sourceforge/jnlp/DefaultLaunchHandler.java: Extend AbstractLaunchHandler. (DefaultLaunchHandler): New method. (printMessage): Moved to parent class. * netx/net/sourceforge/jnlp/GuiLaunchHandler.java: Extend AbstractLaunchHandler. (GuiLauchHandler): New method. (launchError): Print the error too. (launchWarning,validationError): Call parent's printMessage. * netx/net/sourceforge/jnlp/LaunchException.java: Use standard java exception chaining. This removes compatibility with pre-java 1.3 class libraries. (LaunchException(JNLPFile,Exception,String,String,String,String)): Pass cause to parent so exceptions are chanined properly. (LaunchException(String,Throwable),LaunchException(Throwable)): Call parent's constructor. (printStackTrace(PrintStream),printStackTrace(PrintWriter),getCause): Removed. Use parent's implementation instead. (getCauses): Removed. * netx/net/sourceforge/jnlp/LaunchHandler.java (validationError): Rename argument to clarify meaing. * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java (initialize): Redirect output of all handlers to System.err. * plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java (PluginAppletSecurityContext): Likewise. * tests/netx/unit/net/sourceforge/jnlp/DefaultLaunchHandlerTest.java, * tests/netx/unit/net/sourceforge/jnlp/LaunchExceptionTest.java: New file. Contains tests.
* Test that checks ServiceManager is setup correctly for applets.Danesh Dadachanji2012-03-123-0/+237
|
* Update JNLPs of tests to include required information/title/vendor tags.Danesh Dadachanji2012-03-1221-1/+25
|
* added reproducers for main class in manifestJiri Vanek2012-03-0814-0/+828
|
* Extended reflection testJiri Vanek2012-03-0712-24/+638
|
* fixed LRU cache behaviour in case of failure. Tests added.Jiri Vanek2012-02-019-1/+635
|
* added xnofork tests and applet testsJiri Vanek2012-01-257-22/+433
|
* Added targets to calcualte code coverage by testsJiri Vanek2011-11-291-3/+67
|
* Added reproducer for handling spaces by javaws both localy and remotelyJiri Vanek2011-11-115-0/+354
|
* reproducers engine can now handle files and directories with spacesJiri Vanek2011-11-112-8/+33
|
* Enabled testWeekdayRange, added tests for star/end of months for dateRange ↵Jiri Vanek2011-11-101-3/+82
| | | | pac function
* added reproducer for pr788Jiri Vanek2011-10-246-0/+212
|
* sun.misc.BASE64Encoder replaced by internal implementationJiri Vanek2011-10-171-0/+128
|
* added missing directory "signed" with its filesJiri Vanek2011-10-037-0/+330
|
* Add tests for CDATA sectionsOmair Majid2011-09-213-4/+101
|
* added first signed reproducer as example and testing read properties signed ↵Jiri Vanek2011-09-221-2/+2
| | | | behaviour.
* Reproducers engine enchanced for signed reproducersJiri Vanek2011-09-221-2/+10
|
* current reproducers (see changelog) done more verboseJiri Vanek2011-09-1512-56/+93
|
* reproducers compilation extended for directory structureJiri Vanek2011-08-021-1/+2
|
* minor changes in reproducers engineJiri Vanek2011-07-261-43/+84
|
* Added algorithm that compares signed JNLP application/template file with ↵Saad Mohammad2011-07-1921-0/+779
| | | | launching JNLP file (with test case and its resources)
* classes are now collapsable in html reportJiri Vanek2011-06-231-2/+3
|
* added first set of reproducersJiri Vanek2011-06-2128-0/+1071
|