2018-07-15 19:41:22 -07:00
|
|
|
#!/usr/bin/env nomsu -V1
|
2018-06-14 23:25:05 -07:00
|
|
|
#
|
|
|
|
Tests for the object model defined in lib/object.nom
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core"
|
2018-05-24 14:57:24 -07:00
|
|
|
use "lib/object.nom"
|
2018-01-31 15:31:25 -08:00
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
object "Dog"
|
2018-06-15 00:17:01 -07:00
|
|
|
(class Dog).genus <- "Canus"
|
|
|
|
method [initialize %]
|
|
|
|
%.barks or<- 0
|
|
|
|
|
|
|
|
method [bark, woof]
|
2018-05-30 17:20:22 -07:00
|
|
|
%barks <- ("Bark!" for % in 1 to ((me).barks))
|
|
|
|
return: %barks joined with " "
|
2018-01-31 15:31:25 -08:00
|
|
|
|
2018-06-15 00:17:01 -07:00
|
|
|
method [get pissed off]
|
2018-05-30 17:20:22 -07:00
|
|
|
((me).barks) +<- 1
|
2018-01-31 15:31:25 -08:00
|
|
|
|
2018-06-15 00:17:01 -07:00
|
|
|
%d <-: new Dog {barks:2}
|
2018-05-24 14:57:24 -07:00
|
|
|
as %d
|
|
|
|
assume: (me) = %d
|
|
|
|
assume: ((me).barks) = 2
|
|
|
|
assume: (bark) = "Bark! Bark!"
|
2018-06-15 00:17:01 -07:00
|
|
|
assume: (woof) = "Bark! Bark!"
|
2018-05-24 14:57:24 -07:00
|
|
|
get pissed off
|
|
|
|
assume: ((me).barks) = 3
|
|
|
|
assume: (bark) = "Bark! Bark! Bark!"
|
2018-06-15 00:17:01 -07:00
|
|
|
assume: (me).genus = "Canus"
|
2018-05-30 17:20:22 -07:00
|
|
|
assume: "\(%d.class)" = "Dog"
|
2018-06-15 00:17:01 -07:00
|
|
|
assume: %d.genus = "Canus"
|
2018-06-14 21:59:25 -07:00
|
|
|
assume: %d.barks = 3
|
2018-05-24 14:57:24 -07:00
|
|
|
|
2018-06-15 00:17:01 -07:00
|
|
|
as: new Dog
|
|
|
|
assume: ((me).barks) = 0
|
|
|
|
..or barf "Default initializer failed"
|
|
|
|
|
|
|
|
as: new Dog {barks:1}
|
2018-05-24 14:57:24 -07:00
|
|
|
assume: (bark) = "Bark!"
|
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
action [foo]
|
2018-06-15 00:17:01 -07:00
|
|
|
as: new Dog {barks:23}
|
2018-05-30 17:20:22 -07:00
|
|
|
return: (me).barks
|
|
|
|
|
|
|
|
assume: (foo) = 23
|
2018-06-04 17:23:02 -07:00
|
|
|
..or barf: "Oops, \(foo) != 23"
|
2018-05-30 17:20:22 -07:00
|
|
|
|
2018-06-15 00:17:01 -07:00
|
|
|
as: new Dog {barks:101}
|
|
|
|
try: as (new Dog {barks:8}) (barf)
|
2018-05-30 17:20:22 -07:00
|
|
|
..and if it succeeds: barf
|
|
|
|
|
|
|
|
assume: (me).barks = 101
|
|
|
|
..or barf "Error in nested 'as % %' failed to properly reset 'self'"
|
|
|
|
|
2018-06-15 00:17:01 -07:00
|
|
|
|
|
|
|
object "Corgi" extends: class Dog
|
|
|
|
method [sploot]
|
|
|
|
"splooted"
|
|
|
|
|
|
|
|
%corg <- (new Corgi)
|
|
|
|
assume: %corg.barks = 0
|
|
|
|
as: new Corgi {barks:1}
|
|
|
|
assume: (sploot) = "splooted"
|
|
|
|
..or barf "subclass method failed"
|
|
|
|
|
|
|
|
assume: (bark) = "Bark!"
|
|
|
|
..or barf "inheritance failed"
|
|
|
|
|
|
|
|
assume: (woof) = "Bark!"
|
|
|
|
|
2018-05-24 14:57:24 -07:00
|
|
|
say "Object test passed."
|