mirror of https://github.com/GNOME/gimp.git
111 lines
2.9 KiB
Scheme
111 lines
2.9 KiB
Scheme
; Complete test of PDB
|
|
|
|
; to run in SF Console:
|
|
; (testing:load-test "pdb.scm")
|
|
; Expect a report of passed and failed
|
|
|
|
; This knows the set of files which are tests.
|
|
; The test files might be organized in directories in the repo,
|
|
; but all flattened into the /tests directory when installed.
|
|
|
|
; images
|
|
(testing:load-test "image-new.scm")
|
|
(testing:load-test "image-precision.scm")
|
|
(testing:load-test "image-indexed.scm")
|
|
(testing:load-test "image-grayscale.scm")
|
|
(testing:load-test "image-ops.scm")
|
|
(testing:load-test "image-layers.scm")
|
|
(testing:load-test "image-set-selected.scm")
|
|
(testing:load-test "image-mode.scm")
|
|
(testing:load-test "image-color-profile.scm")
|
|
|
|
(testing:load-test "paint.scm")
|
|
(testing:load-test "paint-methods.scm")
|
|
(testing:load-test "dynamics.scm")
|
|
|
|
(testing:load-test "layer-new.scm")
|
|
(testing:load-test "layer-ops.scm")
|
|
(testing:load-test "layer-mask.scm")
|
|
; TODO layer stack ops
|
|
|
|
(testing:load-test "text-layer-new.scm")
|
|
|
|
(testing:load-test "vectors-new.scm")
|
|
(testing:load-test "vectors-stroke.scm")
|
|
|
|
(testing:load-test "selection.scm")
|
|
(testing:load-test "selection-from.scm")
|
|
(testing:load-test "selection-by.scm")
|
|
(testing:load-test "selection-by-shape.scm")
|
|
|
|
(testing:load-test "channel-new.scm")
|
|
(testing:load-test "channel-attributes.scm")
|
|
(testing:load-test "channel-ops.scm")
|
|
; TODO channels to selection
|
|
|
|
; Test superclass methods.
|
|
; Drawable and Item are superclasses
|
|
|
|
; Testing Drawable and Item uses extant instances;
|
|
; must be after instances of subclasses are created.
|
|
(testing:load-test "item.scm")
|
|
(testing:load-test "item-position.scm")
|
|
(testing:load-test "item-layer-group.scm")
|
|
|
|
(testing:load-test "drawable.scm")
|
|
(testing:load-test "drawable-attributes.scm")
|
|
(testing:load-test "drawable-ops.scm")
|
|
|
|
; context
|
|
(testing:load-test "context-get-set.scm")
|
|
(testing:load-test "context-resource.scm")
|
|
(testing:load-test "context-stack.scm")
|
|
|
|
(testing:load-test "resource.scm")
|
|
(testing:load-test "brush.scm")
|
|
(testing:load-test "palette.scm")
|
|
; TODO other resources gradient, etc
|
|
(testing:load-test "resource-ops.scm")
|
|
|
|
; clipboards
|
|
; Order important: edit.scm requires empty clipboard
|
|
|
|
(testing:load-test "edit.scm")
|
|
(testing:load-test "edit-multi-layer.scm")
|
|
(testing:load-test "buffer.scm")
|
|
|
|
; gimp module, gimp-get methods
|
|
(testing:load-test "gimp.scm")
|
|
; gimp PDB as a queriable store i.e. database
|
|
(testing:load-test "PDB.scm")
|
|
; test gimp as a refreshable set of installed resources
|
|
(testing:load-test "refresh.scm")
|
|
; test methods on PDBProcedure
|
|
(testing:load-test "procedures.scm")
|
|
|
|
; Only run when not headless
|
|
; (testing:load-test "display.scm")
|
|
|
|
; TODO undo
|
|
; TODO progress
|
|
|
|
; tested in bind-args.scm:
|
|
; unit
|
|
; parasite
|
|
|
|
; gimp-parasite
|
|
|
|
; uncategorized tests
|
|
(testing:load-test "misc.scm")
|
|
(testing:load-test "enums.scm")
|
|
(testing:load-test "bind-args.scm")
|
|
(testing:load-test "pixel.scm")
|
|
|
|
|
|
; report the result
|
|
(testing:report)
|
|
|
|
; yield the session overall result
|
|
(testing:all-passed?)
|
|
|