racket/collects/tests/framework
Robby Findler 6a69da76e2 adjust ascii-box => unicode-box algorithm so that
it only looks left and right at hyphens and only
up and down at pipes, etc. This better handles the
case where you have something like this:

  +--------------+
  | (<= a-x b-y) |
  +--------------+

Before this commit, it would have adjusted the hypens
inside the identifiers
2012-12-24 13:49:32 -06:00
..
canvas.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
debug.rkt disable the trace of all of the messages in the framework tests 2011-01-12 17:32:26 -06:00
exit.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
frame.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
framework-test avoid relying on bash 2010-08-25 17:17:01 -04:00
framework-test-engine Rename "collects/tests/mred" -> ".../gracket". 2010-05-17 01:44:27 -04:00
framework-test-engine.icns
framework-test-engine.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
group-test.rkt fix group-test 2012-10-17 20:19:15 -05:00
handler-test.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
keys.rkt adjust ascii-box => unicode-box algorithm so that 2012-12-24 13:49:32 -06:00
load.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
main.rkt A bunch of fprintf' -> eprintf' conversions (and a few related things). 2012-05-06 12:06:00 -04:00
mem.rkt some long overdue Rackety: renaming the 'scheme:' exports of the framework to 'racket:' 2011-11-30 06:45:50 -06:00
number-snip.rkt adjust number-snip% so that it subscribes to the file/convertible 2011-11-20 16:38:17 -06:00
panel-single.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
panel.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
pasteboard.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
prefs.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
racket.rkt fix close parens behavior in interactions and comments 2012-12-04 20:39:10 -06:00
README some long overdue Rackety: renaming the 'scheme:' exports of the framework to 'racket:' 2011-11-30 06:45:50 -06:00
search.rkt improve the interactivity of DrRacket's search 2012-11-25 20:58:13 -06:00
test-docs-complete.rkt moved the docs-complete library into rackunit 2011-05-05 16:10:42 -05:00
test-suite-utils.rkt improve the interactivity of DrRacket's search 2012-11-25 20:58:13 -06:00
text.rkt ".ss" -> ".rkt" scan done. 2011-07-02 10:37:53 -04:00
utils.rktl More "~n" -> "\n" changes 2010-08-26 12:11:00 -04: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 #|
  - canvases: |# canvas.rkt #|
  - 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

|#))