gui/gui-test/framework/tests
2015-08-02 22:08:52 -05:00
..
private adjust frame.rkt framework tests to be more drdr friendly 2015-07-26 19:34:53 -05:00
canvas.rkt adjust the canvas test suite to not do the separate-process dance 2015-07-22 12:20:56 -05:00
debug.rkt add a more cover-friendly mode to the framework test suite 2015-04-24 21:31:29 -05:00
exit.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
frame.rkt adjust frame.rkt framework tests to be more drdr friendly 2015-07-26 19:34:53 -05:00
framework-test Remove extra directories. 2014-12-02 02:33:07 -05:00
framework-test-engine Remove extra directories. 2014-12-02 02:33:07 -05:00
framework-test-engine.icns Remove extra directories. 2014-12-02 02:33:07 -05:00
framework-test-engine.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
group-test.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
handler-test.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
keys.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
load.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
main.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
mem.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
number-snip.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
panel-single.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
panel.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
pasteboard.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
prefs.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
racket.rkt Use a regular expression to indent for loops in framework 2015-08-02 22:08:52 -05:00
README adjust frame.rkt framework tests to be more drdr friendly 2015-07-26 19:34:53 -05:00
search.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
test-docs-complete.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
test-suite-utils.rkt add a more cover-friendly mode to the framework test suite 2015-04-24 21:31:29 -05:00
text.rkt fix all-string-snips? predicate 2015-07-25 16:44:22 -05:00

(#|
                      Framework Test Suite Overview

Each test will rely on the successfully completion of all of the ones
before it. In addition, all test suites rely on the sucessful
completion of the engine test suites and the mzscheme test suites.

All of these tests reside in PLTHOME/collects/tests/framework/

There will be a main mzscheme process which will start up a new gracket
as necessary for the test suites. Since some tests actually require
gracket to exit in order to pass, this governor is required.

To run a test use:

   framework-test <test.rkt> ...

where <test.rkt> is the name of one of the tests below.  Alternatively,
pass no command-line arguments to run all of the tests.

Some of the tests in this file are not yet present in the
testing directory. They are planned future expansions of
this test suite (and have been for some time....)

OS X: you will have to click on the newly started gracket
processes in the doc while the test suite runs or it will
signal failures when there aren't any.

- load: |# load.rkt #|

  | This tests that the advertised ways of loading the framework at
  | its components all work.

- exit: |# exit.rkt #|

  | This tests that exit:exit really exits and that the exit callbacks
  | are actually run.

- preferences: |# prefs.rkt #|

  | This tests that preferences are saved and restored correctly, both
  | immediately and across reboots of gracket.


- individual object tests:

  | These tests are simple object creation and basic operations.
  | Each test assumes that the others pass; this may yield strange
  | error messages when one fails.

  - frames: frame.rkt    -- now runs directly via raco test.
  - canvases: canvas.rkt -- now runs directly via raco test.
  - texts: |# text.rkt #|
  - pasteboards: |# pasteboard.rkt #|

- keybindings: |# keys.rkt #|

  | This tests the misc (non-scheme) keybindings

- searching: |# search.rkt #|

  | This tests the search results

- group tests: |# group-test.rkt #|

  | make sure that mred:the-frame-group records frames correctly.
  | fake user input expected.

- number snip: |# number-snip.rkt #|

  | some tests for the number-snip% class

- scheme tests:

  | Tests the scheme: section

  |# racket.rkt #|

- panel tests:

 |# panel.rkt #|

- |# (interactive #| tests

  | these tests require intervention by people. Clicking and whatnot

  - panel:single |# panel-single.rkt #|

  - garbage collection: |# mem.rkt #|

    | These tests will create objects in various configurations and
    | make sure that they are garbage collected

|#))