gui/gui-test/framework/tests
2017-04-18 08:01:23 -05:00
..
private take more care to not be affected by the contents of the 2017-01-16 21:13:45 -06:00
canvas.rkt take more care to not be affected by the contents of the 2017-01-16 21:13:45 -06: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 take more care to not be affected by the contents of the 2017-01-16 21:13:45 -06: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 take more care to not be affected by the contents of the 2017-01-16 21:13:45 -06:00
handler-test.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
keys.rkt avoid using separate events to send keystrokes in a hope of avoiding 2017-02-03 10:24:30 -06: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 add more operations on number snips 2017-04-18 08:01:23 -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 fix preferences snapshots 2017-01-23 17:54:32 -06:00
racket.rkt adjust indentation so that hyphens at the start of sexp causes subsequent 2016-06-22 20:44:29 -05:00
README add more operations on number snips 2017-04-18 08:01:23 -05:00
search.rkt more search fixes 2016-07-26 19:15:48 -05:00
test-docs-complete.rkt Remove extra directories. 2014-12-02 02:33:07 -05:00
test-suite-utils.rkt improve the situation for search results in nested editors 2016-07-23 03:00:00 -05:00
text.rkt Run fewer random tests 2017-03-07 12:06:56 -06: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  -- now runs directly via raco test

  | 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     -- now runs directly via raco test.
  - pasteboards: |# pasteboard.rkt #|

- keybindings: keys.rkt -- now runs directly via raco test.

  | This tests the misc (non-scheme) keybindings

- searching: |# search.rkt #|

  | This tests the search results

- group tests: group-test.rkt  -- now runs directly via raco test

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

- number snip: number-snip.rkt  -- now runs directly via raco test

  | 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

|#))