1
0
Fork 0
gimp/plug-ins/script-fu/test/tests/PDB/paint/paint.scm
Daniel Baumann 554424e00a
Adding upstream version 3.0.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 00:14:50 +02:00

186 lines
No EOL
5.2 KiB
Scheme

; Test painting operations on drawable
; AKA PaintMethod
; This tests the PaintMethods that have an API.
; These PaintMethods do not have API:
; ink, paintbrush, mybrush, perspective-clone.
; See paintmethods.scm for tests of those.
; The operand is a subset of the drawable
; For operations on the total image, see image-ops.scm
; For operations on a total layer, see layer-ops.scm
; Not currently testing pixels were changed,
; only that the operations says it succeeded.
(script-fu-use-v3)
; Define an aux testing function
; that tests the "-default" kind of paint operation.
; Takes an operation (first-class function)
; The operation must have the signature (layer, num_strokes, stroke array).
; All the <paint-op>-default PDB procedures have that signature.
(define (test-paint-op-default paint-op)
; the PDB procedure paint-op succeeds
(assert `(,paint-op
,testLayer ; target
#(4.0 4.0)))) ; float array
; setup
(define testImage (gimp-image-new 21 22 RGB))
(define testLayer (testing:layer-new testImage))
; assert layer is not inserted in image
; paint ops fail until layer is added to image
(assert-error `(gimp-airbrush ,testLayer 50.0 ; pressure
#(4.0 4.0)) ; float array of strokes
(string-append
"Procedure execution of gimp-airbrush failed on invalid input arguments: "))
; "Item 'LayerNew#2' (10) cannot be used because it has not been added to an image"))
; adding layer to image succeeds
(assert `(gimp-image-insert-layer
,testImage
,testLayer
0 ; parent
0 )) ; position within parent
(test! "airbrush")
(assert `(gimp-airbrush
,testLayer
50.0 ; pressure
#(4.0 4.0))) ; float array of strokes
; with two strokes
(assert `(gimp-airbrush
,testLayer
50.0 ; pressure
#(4.0 4.0 8.0 8.0))) ; float array of strokes
; with stroke out of bounds of image
(assert `(gimp-airbrush
,testLayer
50.0 ; pressure
#(4.0 4.0 800.0 800.0))) ; float array of strokes
(test! "clone")
; where source and target are same.
; stroke coords in the target.
; FIXME throws GLib CRITICAL
(assert `(gimp-clone
,testLayer ; affected i.e. target
,testLayer ; source
CLONE-IMAGE ; clone type
1.0 1.0 ; source coord x,y is not a vector
#(4.0 4.0))) ; float array of strokes
; TODO CLONE-PATTERN
(test! "eraser")
(assert `(gimp-eraser
,testLayer ; target
#(4.0 4.0 800.0 800.0) ; float array of strokes
BRUSH-HARD ; hardness
PAINT-CONSTANT)) ; PaintApplicationMode
(assert `(gimp-eraser-default
,testLayer ; target
#(0.0 0.0 800.0 800.0) ; float array of strokes
))
(test! "heal")
; FIXME throws GLib CRITICAL "has no property named 'src-x'"
(assert `(gimp-heal
,testLayer ; affected i.e. target
,testLayer ; source
1.0 1.0 ; source coord x,y is not a vector
#(4.0 4.0))) ; float array of strokes
(test! "convolve")
(assert `(gimp-convolve
,testLayer ; affected i.e. target
99.9999999999 ; pressure
CONVOLVE-BLUR ; type
#(4.0 4.0))) ; float array of strokes
(test! "dodgeburn")
(assert `(gimp-dodgeburn
,testLayer ; affected i.e. target
66.0 ; exposure
DODGE-BURN-TYPE-DODGE ; type, BURN or DODGE
TRANSFER-MIDTONES ; transfer mode
#(4.0 4.0))) ; float array of strokes
; pencil
; See below, only tested in default kind.
(test! "smudge")
(assert `(gimp-smudge
,testLayer ; affected i.e. target
0.0 ; pressure
#(4.0 4.0))) ; float array of strokes
; Test the "-default" kinds of paint ops
; These are convenience methods, taking fewer args.
; The args default from the tool settings.
; In alphabetic order
(test-paint-op-default gimp-airbrush-default)
(test-paint-op-default gimp-convolve-default)
(test-paint-op-default gimp-dodgeburn-default)
; FIXME fails "Set a source image first"
; The API has no way to set the source image
;(test-paint-op-default gimp-clone-default)
;(test-paint-op-default gimp-heal-default)
(test-paint-op-default gimp-paintbrush-default)
; !!! gimp-pencil is not named gimp-pencil-default
; but has the same signature as other default paint ops.
(test-paint-op-default gimp-pencil)
(test-paint-op-default gimp-smudge-default)
; For any paint op,
; <2 control points is error
(assert-error `(gimp-airbrush
,testLayer
50.0 ; pressure
#(4.0)) ; float array of strokes
"Procedure execution of gimp-airbrush failed")
; The binding requires a Scheme vector for C float array,
; not a list, here a literal i.e. quoted.
(assert-error `(gimp-airbrush
,testLayer
50.0 ; pressure
`(4.0 49.0)) ; strokes
"in script, expected type: vector for argument 3 to gimp-airbrush")
(script-fu-use-v2)