Kernel-Tests.st 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. Smalltalk current createPackage: 'Kernel-Tests'!
  2. TestCase subclass: #BlockClosureTest
  3. instanceVariableNames: ''
  4. package: 'Kernel-Tests'!
  5. !BlockClosureTest methodsFor: 'tests'!
  6. testCanClearInterval
  7. self shouldnt: [([Error new signal] valueWithInterval: 0) clearInterval] raise: Error
  8. !
  9. testCanClearTimeout
  10. self shouldnt: [([Error new signal] valueWithTimeout: 0) clearTimeout] raise: Error
  11. !
  12. testCompiledSource
  13. self assert: ([1+1] compiledSource includesSubString: 'function')
  14. !
  15. testCurrySelf
  16. | curriedMethod array |
  17. curriedMethod := [ :selfarg :x | selfarg at: x ] currySelf asCompiledMethod: 'foo:'.
  18. array := #(3 1 4).
  19. ClassBuilder new installMethod: curriedMethod forClass: Array category: '**test helper'.
  20. [ self assert: (array foo: 2) equals: 1 ]
  21. ensure: [ Array removeCompiledMethod: curriedMethod ]
  22. !
  23. testEnsure
  24. self assert: ([3] ensure: [4]) equals: 3
  25. !
  26. testEnsureRaises
  27. self should: [[Error new signal] ensure: [true]] raise: Error
  28. !
  29. testExceptionSemantics
  30. "See https://github.com/NicolasPetton/amber/issues/314"
  31. self timeout: 100.
  32. (self async: [
  33. [
  34. self assert: true.
  35. Error signal.
  36. "The following should *not* be run"
  37. self deny: true.
  38. self finished.
  39. ] on: Error do: [ :ex | self finished ]
  40. ]) valueWithTimeout: 0
  41. !
  42. testNewWithValues
  43. <
  44. function theTestPrototype() {this.name = "theTestPrototype";}
  45. function theTestConstructor(arg1, arg2, arg3) {}
  46. theTestConstructor.prototype = new theTestPrototype;
  47. var theWrappedConstructor = _st(theTestConstructor);
  48. var theResult = theWrappedConstructor._newWithValues_([1, 2, 3]);
  49. self._assert_equals_(Object.getPrototypeOf(theResult).name, 'theTestPrototype');
  50. "newWithValues: cannot help if the argument list is wrong, and should warn that a mistake was made."
  51. function constructionShouldFail() {var anotherResult = theWrappedConstructor._newWithValues_('This is so wrong');}
  52. self._should_raise_(_st(constructionShouldFail), smalltalk.Error);
  53. >
  54. !
  55. testNumArgs
  56. self assert: [] numArgs equals: 0.
  57. self assert: [:a :b | ] numArgs equals: 2
  58. !
  59. testOnDo
  60. self assert: ([Error new signal] on: Error do: [:ex | true])
  61. !
  62. testValue
  63. self assert: ([1+1] value) equals: 2.
  64. self assert: ([:x | x +1] value: 2) equals: 3.
  65. self assert: ([:x :y | x*y] value: 2 value: 4) equals: 8.
  66. "Arguments are optional in Amber. This isn't ANSI compliant."
  67. self assert: ([:a :b :c | 1] value) equals: 1
  68. !
  69. testValueWithPossibleArguments
  70. self assert: ([1] valueWithPossibleArguments: #(3 4)) equals: 1.
  71. self assert: ([:a | a + 4] valueWithPossibleArguments: #(3 4)) equals: 7.
  72. self assert: ([:a :b | a + b] valueWithPossibleArguments: #(3 4 5)) equals: 7.
  73. !
  74. testWhileFalse
  75. | i |
  76. i := 0.
  77. [i > 5] whileFalse: [i := i + 1].
  78. self assert: i equals: 6.
  79. i := 0.
  80. [i := i + 1. i > 5] whileFalse.
  81. self assert: i equals: 6
  82. !
  83. testWhileTrue
  84. | i |
  85. i := 0.
  86. [i < 5] whileTrue: [i := i + 1].
  87. self assert: i equals: 5.
  88. i := 0.
  89. [i := i + 1. i < 5] whileTrue.
  90. self assert: i equals: 5
  91. ! !
  92. TestCase subclass: #BooleanTest
  93. instanceVariableNames: ''
  94. package: 'Kernel-Tests'!
  95. !BooleanTest methodsFor: 'tests'!
  96. testEquality
  97. "We're on top of JS...just be sure to check the basics!!"
  98. self deny: 0 = false.
  99. self deny: false = 0.
  100. self deny: '' = false.
  101. self deny: false = ''.
  102. self assert: (true = true).
  103. self deny: false = true.
  104. self deny: true = false.
  105. self assert: (false = false).
  106. "JS may do some type coercing after sending a message"
  107. self assert: (true yourself = true).
  108. self assert: (true yourself = true yourself)
  109. !
  110. testIdentity
  111. "We're on top of JS...just be sure to check the basics!!"
  112. self deny: 0 == false.
  113. self deny: false == 0.
  114. self deny: '' == false.
  115. self deny: false == ''.
  116. self assert: true == true.
  117. self deny: false == true.
  118. self deny: true == false.
  119. self assert: false == false.
  120. "JS may do some type coercing after sending a message"
  121. self assert: true yourself == true.
  122. self assert: true yourself == true yourself
  123. !
  124. testIfTrueIfFalse
  125. self assert: (true ifTrue: ['alternative block']) equals: 'alternative block'.
  126. self assert: (true ifFalse: ['alternative block']) equals: nil.
  127. self assert: (false ifTrue: ['alternative block']) equals: nil.
  128. self assert: (false ifFalse: ['alternative block']) equals: 'alternative block'.
  129. self assert: (false ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.
  130. self assert: (false ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.
  131. self assert: (true ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.
  132. self assert: (true ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.
  133. !
  134. testIfTrueIfFalseWithBoxing
  135. self assert: (true yourself ifTrue: ['alternative block']) equals: 'alternative block'.
  136. self assert: (true yourself ifFalse: ['alternative block']) equals: nil.
  137. self assert: (false yourself ifTrue: ['alternative block']) equals: nil.
  138. self assert: (false yourself ifFalse: ['alternative block']) equals: 'alternative block'.
  139. self assert: (false yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.
  140. self assert: (false yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.
  141. self assert: (true yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.
  142. self assert: (true yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.
  143. !
  144. testLogic
  145. "Trivial logic table"
  146. self assert: (true & true);
  147. deny: (true & false);
  148. deny: (false & true);
  149. deny: (false & false).
  150. self assert: (true | true);
  151. assert: (true | false);
  152. assert: (false | true);
  153. deny: (false | false).
  154. "Checking that expressions work fine too"
  155. self assert: (true & (1 > 0));
  156. deny: ((1 > 0) & false);
  157. deny: ((1 > 0) & (1 > 2)).
  158. self assert: (false | (1 > 0));
  159. assert: ((1 > 0) | false);
  160. assert: ((1 > 0) | (1 > 2))
  161. !
  162. testLogicKeywords
  163. "Trivial logic table"
  164. self
  165. assert: (true and: [ true]);
  166. deny: (true and: [ false ]);
  167. deny: (false and: [ true ]);
  168. deny: (false and: [ false ]).
  169. self
  170. assert: (true or: [ true ]);
  171. assert: (true or: [ false ]);
  172. assert: (false or: [ true ]);
  173. deny: (false or: [ false ]).
  174. "Checking that expressions work fine too"
  175. self
  176. assert: (true and: [ 1 > 0 ]);
  177. deny: ((1 > 0) and: [ false ]);
  178. deny: ((1 > 0) and: [ 1 > 2 ]).
  179. self
  180. assert: (false or: [ 1 > 0 ]);
  181. assert: ((1 > 0) or: [ false ]);
  182. assert: ((1 > 0) or: [ 1 > 2 ])
  183. !
  184. testNonBooleanError
  185. self should: [ '' ifTrue: [] ifFalse: [] ] raise: NonBooleanReceiver
  186. ! !
  187. TestCase subclass: #ClassBuilderTest
  188. instanceVariableNames: 'builder theClass'
  189. package: 'Kernel-Tests'!
  190. !ClassBuilderTest methodsFor: 'running'!
  191. setUp
  192. builder := ClassBuilder new
  193. !
  194. tearDown
  195. theClass ifNotNil: [Smalltalk current removeClass: theClass. theClass := nil]
  196. ! !
  197. !ClassBuilderTest methodsFor: 'tests'!
  198. testClassCopy
  199. theClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
  200. self assert: theClass superclass == ObjectMock superclass.
  201. self assert: theClass instanceVariableNames == ObjectMock instanceVariableNames.
  202. self assert: theClass name equals: 'ObjectMock2'.
  203. self assert: theClass package == ObjectMock package.
  204. self assert: theClass methodDictionary keys equals: ObjectMock methodDictionary keys
  205. !
  206. testClassMigration
  207. | instance oldClass |
  208. oldClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
  209. instance := (Smalltalk current at: 'ObjectMock2') new.
  210. "Change the superclass of ObjectMock2"
  211. ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
  212. instanceVariableNames: ''
  213. package: 'Kernel-Tests'.
  214. self deny: oldClass == ObjectMock2.
  215. self assert: ObjectMock2 superclass == ObjectMock.
  216. self assert: ObjectMock2 instanceVariableNames isEmpty.
  217. self assert: ObjectMock2 selectors equals: oldClass selectors.
  218. self assert: ObjectMock2 comment equals: oldClass comment.
  219. self assert: ObjectMock2 package name equals: 'Kernel-Tests'.
  220. self deny: instance class == ObjectMock2.
  221. "Commeting this out. Tests implementation detail."
  222. "self assert: instance class name equals: 'OldObjectMock2'."
  223. self assert: (Smalltalk current at: instance class name) isNil.
  224. Smalltalk current removeClass: ObjectMock2
  225. !
  226. testClassMigrationWithClassInstanceVariables
  227. builder copyClass: ObjectMock named: 'ObjectMock2'.
  228. ObjectMock2 class instanceVariableNames: 'foo bar'.
  229. "Change the superclass of ObjectMock2"
  230. ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
  231. instanceVariableNames: ''
  232. package: 'Kernel-Tests'.
  233. self assert: ObjectMock2 class instanceVariableNames equals: #('foo' 'bar').
  234. Smalltalk current removeClass: ObjectMock2
  235. !
  236. testClassMigrationWithSubclasses
  237. builder copyClass: ObjectMock named: 'ObjectMock2'.
  238. ObjectMock2 subclass: 'ObjectMock3' instanceVariableNames: '' package: 'Kernel-Tests'.
  239. ObjectMock3 subclass: 'ObjectMock4' instanceVariableNames: '' package: 'Kernel-Tests'.
  240. "Change the superclass of ObjectMock2"
  241. ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
  242. instanceVariableNames: ''
  243. package: 'Kernel-Tests'.
  244. self assert: (ObjectMock subclasses includes: ObjectMock2).
  245. self assert: (ObjectMock2 subclasses includes: ObjectMock3).
  246. self assert: (ObjectMock3 subclasses includes: ObjectMock4).
  247. ObjectMock allSubclasses do: [ :each | Smalltalk current removeClass: each ]
  248. !
  249. testInstanceVariableNames
  250. self assert: (builder instanceVariableNamesFor: ' hello world ') equals: #('hello' 'world')
  251. ! !
  252. TestCase subclass: #CollectionTest
  253. instanceVariableNames: ''
  254. package: 'Kernel-Tests'!
  255. !CollectionTest methodsFor: 'accessing'!
  256. collection
  257. ^ self collectionClass withAll: self defaultValues
  258. !
  259. collectionClass
  260. ^ self class collectionClass
  261. !
  262. collectionWithDuplicates
  263. ^ self collectionClass withAll: #('a' 'b' 'c' 1 2 1 'a')
  264. !
  265. defaultValues
  266. ^ #(1 2 3 -4)
  267. ! !
  268. !CollectionTest methodsFor: 'convenience'!
  269. assertSameContents: aCollection as: anotherCollection
  270. self assert: (aCollection size = anotherCollection size).
  271. aCollection do: [ :each |
  272. self assert: ((aCollection occurrencesOf: each) = (anotherCollection occurrencesOf: each)) ]
  273. ! !
  274. !CollectionTest methodsFor: 'testing'!
  275. isCollectionReadOnly
  276. ^ false
  277. ! !
  278. !CollectionTest methodsFor: 'tests'!
  279. testAsArray
  280. self
  281. assertSameContents: self collection
  282. as: self collection asArray
  283. !
  284. testAsOrderedCollection
  285. self
  286. assertSameContents: self collection
  287. as: self collection asOrderedCollection
  288. !
  289. testAsSet
  290. | c set |
  291. c := self collectionWithDuplicates.
  292. set := c asSet.
  293. self assert: set size equals: 5.
  294. c do: [ :each |
  295. self assert: (set includes: each) ]
  296. !
  297. testCollect
  298. | newCollection |
  299. newCollection := #(1 2 3 4).
  300. self
  301. assertSameContents: (self collection collect: [ :each |
  302. each abs ])
  303. as: newCollection
  304. !
  305. testDetect
  306. self assert: (self collection detect: [ :each | each < 0 ]) equals: -4.
  307. self
  308. should: [ self collection detect: [ :each | each = 6 ] ]
  309. raise: Error
  310. !
  311. testDo
  312. | newCollection |
  313. newCollection := OrderedCollection new.
  314. self collection do: [ :each |
  315. newCollection add: each ].
  316. self
  317. assertSameContents: self collection
  318. as: newCollection
  319. !
  320. testIsEmpty
  321. self assert: self collectionClass new isEmpty.
  322. self deny: self collection isEmpty
  323. !
  324. testSelect
  325. | newCollection |
  326. newCollection := #(2 -4).
  327. self
  328. assertSameContents: (self collection select: [ :each |
  329. each even ])
  330. as: newCollection
  331. !
  332. testSize
  333. self assert: self collectionClass new size equals: 0.
  334. self assert: self collection size equals: 4
  335. ! !
  336. !CollectionTest class methodsFor: 'accessing'!
  337. collectionClass
  338. ^ nil
  339. ! !
  340. !CollectionTest class methodsFor: 'testing'!
  341. isAbstract
  342. ^ self collectionClass isNil
  343. ! !
  344. CollectionTest subclass: #IndexableCollectionTest
  345. instanceVariableNames: ''
  346. package: 'Kernel-Tests'!
  347. !IndexableCollectionTest methodsFor: 'tests'!
  348. testAt
  349. self assert: (self collection at: 4) equals: -4.
  350. self should: [ self collection at: 5 ] raise: Error
  351. !
  352. testAtIfAbsent
  353. self assert: (self collection at: (self collection size + 1) ifAbsent: [ 'none' ]) equals: 'none'
  354. !
  355. testContains
  356. | collection |
  357. collection := self collection.
  358. self assert: (self collection contains: [ :each | each = self collection first ]).
  359. self deny: (self collection contains: [ :each | each = Object new ])
  360. !
  361. testIndexOf
  362. self assert: (self collection indexOf: 2) equals: 2.
  363. self should: [ self collection indexOf: 999 ] raise: Error.
  364. self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
  365. !
  366. testWithIndexDo
  367. | collection |
  368. collection := self collection.
  369. self collection withIndexDo: [ :each :index |
  370. self assert: (collection at: index) equals: each ]
  371. ! !
  372. IndexableCollectionTest subclass: #HashedCollectionTest
  373. instanceVariableNames: ''
  374. package: 'Kernel-Tests'!
  375. !HashedCollectionTest methodsFor: 'accessing'!
  376. collection
  377. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4 }
  378. !
  379. collectionWithDuplicates
  380. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4. 'e' -> 1. 'f' -> 2. 'g' -> 10 }
  381. ! !
  382. !HashedCollectionTest methodsFor: 'tests'!
  383. testAsDictionary
  384. self assert: ( self collectionClass new asDictionary isMemberOf: Dictionary ).
  385. !
  386. testAt
  387. self assert: (self collection at: 'a') equals: 2.
  388. self should: [ self collection at: 5 ] raise: Error
  389. !
  390. testContains
  391. | collection |
  392. collection := self collection.
  393. self assert: (self collection contains: [ :each | each = self collection values first ]).
  394. self deny: (self collection contains: [ :each | each = Object new ])
  395. !
  396. testFrom
  397. "Accept a collection of associations."
  398. | associations |
  399. associations := { 'a' -> 1. 'b' -> 2 }.
  400. self assertSameContents: ( self class collectionClass from: associations ) as: #{ 'a' -> 1. 'b' -> 2 }.
  401. !
  402. testIndexOf
  403. self assert: (self collection indexOf: 2) equals: 'a'.
  404. self should: [ self collection indexOf: 999 ] raise: Error.
  405. self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
  406. !
  407. testNewFromPairs
  408. "Accept an array in which all odd indexes are keys and evens are values."
  409. | flattenedAssociations |
  410. flattenedAssociations := { 'a'. 1. 'b'. 2 }.
  411. self assertSameContents: ( self class collectionClass newFromPairs: flattenedAssociations ) as: #{ 'a' -> 1. 'b' -> 2 }.
  412. ! !
  413. !HashedCollectionTest class methodsFor: 'accessing'!
  414. collectionClass
  415. ^ HashedCollection
  416. ! !
  417. HashedCollectionTest subclass: #DictionaryTest
  418. instanceVariableNames: ''
  419. package: 'Kernel-Tests'!
  420. !DictionaryTest methodsFor: 'accessing'!
  421. collection
  422. ^ Dictionary new
  423. at: 1 put: 1;
  424. at: 'a' put: 2;
  425. at: true put: 3;
  426. at: 4 put: -4;
  427. yourself
  428. !
  429. collectionWithDuplicates
  430. ^ Dictionary new
  431. at: 1 put: 1;
  432. at: 'a' put: 2;
  433. at: true put: 3;
  434. at: 4 put: -4;
  435. at: 'b' put: 1;
  436. at: 3 put: 3;
  437. at: false put: 12;
  438. yourself
  439. ! !
  440. !DictionaryTest methodsFor: 'tests'!
  441. testAccessing
  442. | d |
  443. d := Dictionary new.
  444. d at: 'hello' put: 'world'.
  445. self assert: (d at: 'hello') equals: 'world'.
  446. self assert: (d at: 'hello' ifAbsent: [nil]) equals: 'world'.
  447. self deny: (d at: 'foo' ifAbsent: [nil]) = 'world'.
  448. self assert: (d includesKey: 'hello').
  449. self deny: (d includesKey: 'foo').
  450. d at: 1 put: 2.
  451. self assert: (d at: 1) equals: 2.
  452. d at: 1@3 put: 3.
  453. self assert: (d at: 1@3) equals: 3.
  454. self assert: (d includesKey: 1@3).
  455. self deny: (d includesKey: 3@1)
  456. !
  457. testAsHashedCollection
  458. self assert: ( self collectionClass new asHashedCollection isMemberOf: HashedCollection ).
  459. !
  460. testDynamicDictionaries
  461. self assert: #{'hello' -> 1} asDictionary equals: (Dictionary with: 'hello' -> 1)
  462. !
  463. testEquality
  464. | d1 d2 |
  465. self assert: (Dictionary new = Dictionary new).
  466. d1 := Dictionary new at: 1 put: 2; yourself.
  467. d2 := Dictionary new at: 1 put: 2; yourself.
  468. self assert: (d1 = d2).
  469. d2 := Dictionary new at: 1 put: 3; yourself.
  470. self deny: d1 = d2.
  471. d2 := Dictionary new at: 2 put: 2; yourself.
  472. self deny: d1 = d2.
  473. d2 := Dictionary new at: 1 put: 2; at: 3 put: 4; yourself.
  474. self deny: d1 = d2.
  475. !
  476. testIfAbsent
  477. | d visited |
  478. visited := false.
  479. d := Dictionary new.
  480. d at: 'hello' ifAbsent: [ visited := true ].
  481. self assert: visited.
  482. !
  483. testIfPresent
  484. | d visited absent |
  485. visited := false.
  486. d := Dictionary new.
  487. d at: 'hello' put: 'world'.
  488. d at: 'hello' ifPresent: [ :value | visited := value ].
  489. self assert: visited equals: 'world'.
  490. absent := d at: 'bye' ifPresent: [ :value | visited := value ].
  491. self assert: absent isNil.
  492. !
  493. testIfPresentIfAbsent
  494. | d visited |
  495. visited := false.
  496. d := Dictionary new.
  497. d at: 'hello' put: 'world'.
  498. d at: 'hello' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].
  499. self assert: visited equals: 'world'.
  500. d at: 'buy' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].
  501. self assert: visited.
  502. !
  503. testKeys
  504. | d |
  505. d := Dictionary new.
  506. d at: 1 put: 2.
  507. d at: 2 put: 3.
  508. d at: 3 put: 4.
  509. self assert: d keys equals: #(1 2 3)
  510. !
  511. testPointKey
  512. | d |
  513. d := Dictionary new.
  514. d at: 1@1 put: 'foo'.
  515. self assert: (d at: 1@1) equals: 'foo'.
  516. d at: 1@1 put: 'bar'.
  517. self assert: (d at: 1@1) equals: 'bar'.
  518. d removeKey: 1@1.
  519. self assert: (d at: 1@1 ifAbsent: [ 'baz' ]) equals: 'baz'.
  520. self deny: (d includesKey: 1@1)
  521. !
  522. testPrintString
  523. self
  524. assert: (Dictionary new
  525. at:'firstname' put: 'James';
  526. at:'lastname' put: 'Bond';
  527. printString)
  528. equals: 'a Dictionary (''firstname'' -> ''James'' , ''lastname'' -> ''Bond'')'
  529. !
  530. testRemoveKey
  531. | d key |
  532. d := Dictionary new.
  533. d at: 1 put: 2.
  534. d at: 2 put: 3.
  535. d at: 3 put: 4.
  536. key := 2.
  537. self assert: d keys equals: #(1 2 3).
  538. d removeKey: key.
  539. self assert: d keys equals: #(1 3).
  540. self assert: d values equals: #(2 4).
  541. self deny: (d includesKey: 2)
  542. !
  543. testRemoveKeyIfAbsent
  544. | d key |
  545. d := Dictionary new.
  546. d at: 1 put: 2.
  547. d at: 2 put: 3.
  548. d at: 3 put: 4.
  549. key := 2.
  550. self assert: (d removeKey: key) equals: 3.
  551. key := 3.
  552. self assert: (d removeKey: key ifAbsent: [42]) equals: 4.
  553. key := 'why'.
  554. self assert: (d removeKey: key ifAbsent: [42] ) equals: 42.
  555. !
  556. testSize
  557. | d |
  558. d := Dictionary new.
  559. self assert: d size equals: 0.
  560. d at: 1 put: 2.
  561. self assert: d size equals: 1.
  562. d at: 2 put: 3.
  563. self assert: d size equals: 2.
  564. !
  565. testValues
  566. | d |
  567. d := Dictionary new.
  568. d at: 1 put: 2.
  569. d at: 2 put: 3.
  570. d at: 3 put: 4.
  571. self assert: d values equals: #(2 3 4)
  572. ! !
  573. !DictionaryTest class methodsFor: 'accessing'!
  574. collectionClass
  575. ^ Dictionary
  576. ! !
  577. IndexableCollectionTest subclass: #SequenceableCollectionTest
  578. instanceVariableNames: ''
  579. package: 'Kernel-Tests'!
  580. SequenceableCollectionTest subclass: #ArrayTest
  581. instanceVariableNames: ''
  582. package: 'Kernel-Tests'!
  583. !ArrayTest methodsFor: 'tests'!
  584. testAtIfAbsent
  585. | array |
  586. array := #('hello' 'world').
  587. self assert: (array at: 1) equals: 'hello'.
  588. self assert: (array at: 2) equals: 'world'.
  589. self assert: (array at: 2 ifAbsent: ['not found']) equals: 'world'.
  590. self assert: (array at: 0 ifAbsent: ['not found']) equals: 'not found'.
  591. self assert: (array at: -10 ifAbsent: ['not found']) equals: 'not found'.
  592. self assert: (array at: 3 ifAbsent: ['not found']) equals: 'not found'.
  593. !
  594. testFirstN
  595. self assert: ({1. 2. 3. 4. 5} first: 3) equals: {1. 2. 3}
  596. !
  597. testIfEmpty
  598. self assert: ( '' ifEmpty: ['zork'] ) equals: 'zork'
  599. !
  600. testPrintString
  601. | array |
  602. array := Array new.
  603. self assert: array printString equals: 'an Array ()'.
  604. array add: 1; add: 3.
  605. self assert: array printString equals: 'an Array (1 3)'.
  606. array add: 'foo'.
  607. self assert: array printString equals: 'an Array (1 3 ''foo'')'.
  608. array remove: 1; remove: 3.
  609. self assert: array printString equals: 'an Array (''foo'')'.
  610. array addLast: 3.
  611. self assert: array printString equals: 'an Array (''foo'' 3)'.
  612. array addLast: 3.
  613. self assert: array printString equals: 'an Array (''foo'' 3 3)'.
  614. !
  615. testRemoveFromTo
  616. self assert: (#(1 2 3 4) removeFrom: 1 to: 3) equals: #(4).
  617. self assert: (#(1 2 3 4) removeFrom: 2 to: 3) equals: #(1 4).
  618. self assert: (#(1 2 3 4) removeFrom: 2 to: 4) equals: #(1)
  619. !
  620. testRemoveIndex
  621. self assert: (#(1 2 3 4) removeIndex: 2) equals: #(1 3 4).
  622. self assert: (#(1 2 3 4) removeIndex: 1) equals: #(2 3 4).
  623. self assert: (#('hello') removeIndex: 1) equals: #()
  624. ! !
  625. !ArrayTest class methodsFor: 'accessing'!
  626. collectionClass
  627. ^ Array
  628. ! !
  629. SequenceableCollectionTest subclass: #StringTest
  630. instanceVariableNames: ''
  631. package: 'Kernel-Tests'!
  632. !StringTest methodsFor: 'accessing'!
  633. collection
  634. ^'hello'
  635. !
  636. collectionWithDuplicates
  637. ^ 'abbaerte'
  638. ! !
  639. !StringTest methodsFor: 'tests'!
  640. testAddRemove
  641. self should: ['hello' add: 'a'] raise: Error.
  642. self should: ['hello' remove: 'h'] raise: Error
  643. !
  644. testAsArray
  645. self assert: 'hello' asArray equals: #('h' 'e' 'l' 'l' 'o').
  646. !
  647. testAsNumber
  648. self assert: '3' asNumber equals: 3.
  649. self assert: '-3' asNumber equals: -3.
  650. self assert: '-1.5' asNumber equals: -1.5.
  651. !
  652. testAt
  653. self assert: ('hello' at: 1) equals: 'h'.
  654. self assert: ('hello' at: 5) equals: 'o'.
  655. self assert: ('hello' at: 6 ifAbsent: [nil]) equals: nil
  656. !
  657. testAtPut
  658. "String instances are read-only"
  659. self should: ['hello' at: 1 put: 'a'] raise: Error
  660. !
  661. testCollect
  662. | newCollection |
  663. newCollection := 'hheelllloo'.
  664. self
  665. assertSameContents: (self collection collect: [ :each |
  666. each, each ])
  667. as: newCollection
  668. !
  669. testCopyWithoutAll
  670. self
  671. assert: ('*hello* *world*' copyWithoutAll: '*')
  672. equals: 'hello world'
  673. !
  674. testDetect
  675. self assert: (self collection detect: [ :each | each = 'h' ]) equals: 'h'.
  676. self
  677. should: [ self collection detect: [ :each | each = 6 ] ]
  678. raise: Error
  679. !
  680. testEquality
  681. self assert: 'hello' equals: 'hello'.
  682. self deny: 'hello' = 'world'.
  683. "Test for issue 459"
  684. self deny: 'hello' = (#() at: 1 ifAbsent: [ ]).
  685. self assert: 'hello' equals: 'hello' yourself.
  686. self assert: 'hello' yourself equals: 'hello'.
  687. "test JS falsy value"
  688. self deny: '' = 0
  689. !
  690. testIdentity
  691. self assert: 'hello' == 'hello'.
  692. self deny: 'hello' == 'world'.
  693. self assert: 'hello' == 'hello' yourself.
  694. self assert: 'hello' yourself == 'hello'.
  695. "test JS falsy value"
  696. self deny: '' == 0
  697. !
  698. testIncludesSubString
  699. self assert: ('amber' includesSubString: 'ber').
  700. self deny: ('amber' includesSubString: 'zork').
  701. !
  702. testIndexOf
  703. self assert: (self collection indexOf: 'e') equals: 2.
  704. self should: [ self collection indexOf: 999 ] raise: Error.
  705. self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
  706. !
  707. testJoin
  708. self assert: (',' join: #('hello' 'world')) equals: 'hello,world'
  709. !
  710. testSelect
  711. | newCollection |
  712. newCollection := 'o'.
  713. self
  714. assertSameContents: (self collection select: [ :each |
  715. each = 'o' ])
  716. as: newCollection
  717. !
  718. testSize
  719. self assert: 'smalltalk' size equals: 9.
  720. self assert: '' size equals: 0
  721. !
  722. testStreamContents
  723. self
  724. assert: (String streamContents: [ :aStream |
  725. aStream
  726. nextPutAll: 'hello'; space;
  727. nextPutAll: 'world' ])
  728. equals: 'hello world'
  729. ! !
  730. !StringTest class methodsFor: 'accessing'!
  731. collectionClass
  732. ^ String
  733. ! !
  734. TestCase subclass: #ConsoleTranscriptTest
  735. instanceVariableNames: ''
  736. package: 'Kernel-Tests'!
  737. !ConsoleTranscriptTest methodsFor: 'tests'!
  738. testShow
  739. | originalTranscript |
  740. originalTranscript := Transcript current.
  741. Transcript register: ConsoleTranscript new.
  742. self shouldnt: [ Transcript show: 'Hello console!!' ] raise: Error.
  743. self shouldnt: [ Transcript show: console ] raise: Error.
  744. Transcript register: originalTranscript.
  745. ! !
  746. TestCase subclass: #JSObjectProxyTest
  747. instanceVariableNames: ''
  748. package: 'Kernel-Tests'!
  749. !JSObjectProxyTest methodsFor: 'accessing'!
  750. jsObject
  751. <return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': undefined}>
  752. ! !
  753. !JSObjectProxyTest methodsFor: 'tests'!
  754. testAtIfAbsent
  755. | testObject |
  756. testObject := self jsObject.
  757. self assert: (testObject at: 'abc' ifAbsent: ['Property does not exist']) equals: 'Property does not exist'.
  758. self assert: (testObject at: 'e' ifAbsent: ['Property does not exist']) equals: nil.
  759. self assert: (testObject at: 'a' ifAbsent: ['Property does not exist']) equals: 1.
  760. self assert: (testObject at: 'f' ifAbsent: ['Property does not exist']) equals: nil.
  761. !
  762. testAtIfPresent
  763. | testObject |
  764. testObject := self jsObject.
  765. self assert: (testObject at: 'abc' ifPresent: [ :x | 'hello ',x asString ]) equals: nil.
  766. self assert: (testObject at: 'e' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello nil'.
  767. self assert: (testObject at: 'a' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello 1'.
  768. self assert: (testObject at: 'f' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello nil'.
  769. !
  770. testAtIfPresentIfAbsent
  771. | testObject |
  772. testObject := self jsObject.
  773. self assert: (testObject at: 'abc' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'not present'.
  774. self assert: (testObject at: 'e' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello nil'.
  775. self assert: (testObject at: 'a' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello 1'.
  776. self assert: (testObject at: 'f' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello nil'.
  777. !
  778. testDNU
  779. self should: [self jsObject foo] raise: MessageNotUnderstood
  780. !
  781. testMessageSend
  782. self assert: self jsObject a equals: 1.
  783. self assert: self jsObject b equals: 2.
  784. self assert: (self jsObject c: 3) equals: 3
  785. !
  786. testMethodWithArguments
  787. self assert: (self jsObject c: 1) equals: 1
  788. !
  789. testPrinting
  790. self assert: self jsObject printString equals: '[object Object]'
  791. !
  792. testPropertyThatReturnsEmptyString
  793. | object |
  794. object := self jsObject.
  795. self assert: object d equals: ''.
  796. object d: 'hello'.
  797. self assert: object d equals: 'hello'
  798. !
  799. testPropertyThatReturnsUndefined
  800. | object |
  801. object := self jsObject.
  802. self shouldnt: [ object e ] raise: MessageNotUnderstood.
  803. self assert: object e isNil
  804. !
  805. testValue
  806. | testObject |
  807. testObject := self jsObject.
  808. self assert: testObject value printString equals: '[object Object]'.
  809. testObject at: 'value' put: 'aValue'.
  810. self assert: testObject value equals: 'aValue'
  811. !
  812. testYourself
  813. | object |
  814. object := self jsObject
  815. d: 'test';
  816. yourself.
  817. self assert: object d equals: 'test'
  818. ! !
  819. TestCase subclass: #JavaScriptExceptionTest
  820. instanceVariableNames: ''
  821. package: 'Kernel-Tests'!
  822. !JavaScriptExceptionTest methodsFor: 'helpers'!
  823. throwException
  824. <throw 'test'>
  825. ! !
  826. !JavaScriptExceptionTest methodsFor: 'tests'!
  827. testCatchingException
  828. [ self throwException ]
  829. on: Error
  830. do: [ :error |
  831. self assert: error exception = 'test' ]
  832. !
  833. testRaisingException
  834. self should: [ self throwException ] raise: JavaScriptException
  835. ! !
  836. TestCase subclass: #MessageSendTest
  837. instanceVariableNames: ''
  838. package: 'Kernel-Tests'!
  839. !MessageSendTest methodsFor: 'tests'!
  840. testValue
  841. | messageSend |
  842. messageSend := MessageSend new
  843. receiver: Object new;
  844. selector: #asString;
  845. yourself.
  846. self assert: messageSend value equals: 'an Object'
  847. !
  848. testValueWithArguments
  849. | messageSend |
  850. messageSend := MessageSend new
  851. receiver: 2;
  852. selector: '+';
  853. yourself.
  854. self assert: (messageSend value: 3) equals: 5.
  855. self assert: (messageSend valueWithPossibleArguments: #(4)) equals: 6
  856. ! !
  857. TestCase subclass: #MethodInheritanceTest
  858. instanceVariableNames: 'receiverTop receiverMiddle receiverBottom method performBlock'
  859. package: 'Kernel-Tests'!
  860. !MethodInheritanceTest methodsFor: 'accessing'!
  861. codeGeneratorClass
  862. ^ CodeGenerator
  863. !
  864. targetClassBottom
  865. ^ JavaScriptException
  866. !
  867. targetClassMiddle
  868. ^ Error
  869. !
  870. targetClassTop
  871. ^ Object
  872. ! !
  873. !MethodInheritanceTest methodsFor: 'factory'!
  874. compiler
  875. ^ Compiler new
  876. codeGeneratorClass: self codeGeneratorClass;
  877. yourself
  878. ! !
  879. !MethodInheritanceTest methodsFor: 'initialization'!
  880. setUp
  881. receiverTop := self targetClassTop new.
  882. receiverMiddle := self targetClassMiddle new.
  883. receiverBottom := self targetClassBottom new.
  884. method := nil.
  885. performBlock := [ self error: 'performBlock not initialized' ]
  886. !
  887. tearDown
  888. [ self deinstallTop ] on: Error do: [].
  889. [ self deinstallMiddle ] on: Error do: [].
  890. [ self deinstallBottom ] on: Error do: []
  891. ! !
  892. !MethodInheritanceTest methodsFor: 'testing'!
  893. deinstallBottom
  894. self targetClassBottom removeCompiledMethod: method
  895. !
  896. deinstallMiddle
  897. self targetClassMiddle removeCompiledMethod: method
  898. !
  899. deinstallTop
  900. self targetClassTop removeCompiledMethod: method
  901. !
  902. installBottom: aString
  903. method := self compiler install: aString forClass: self targetClassBottom category: 'tests'
  904. !
  905. installMiddle: aString
  906. method := self compiler install: aString forClass: self targetClassMiddle category: 'tests'
  907. !
  908. installTop: aString
  909. method := self compiler install: aString forClass: self targetClassTop category: 'tests'
  910. !
  911. shouldMNU
  912. self shouldMNUTop.
  913. self shouldMNUMiddle.
  914. self shouldMNUBottom
  915. !
  916. shouldMNUBottom
  917. self should: [ performBlock value: receiverBottom ] raise: MessageNotUnderstood
  918. !
  919. shouldMNUMiddle
  920. self should: [ performBlock value: receiverMiddle ] raise: MessageNotUnderstood
  921. !
  922. shouldMNUTop
  923. self should: [ performBlock value: receiverTop ] raise: MessageNotUnderstood
  924. !
  925. shouldReturn: anObject
  926. | result |
  927. result := performBlock value: receiverTop.
  928. self assert: { 'top'. anObject } equals: { 'top'. result }.
  929. result := performBlock value: receiverMiddle.
  930. self assert: { 'middle'. anObject } equals: { 'middle'. result }.
  931. result := performBlock value: receiverBottom.
  932. self assert: { 'bottom'. anObject } equals: { 'bottom'. result }
  933. !
  934. shouldReturn: anObject and: anObject2 and: anObject3
  935. | result |
  936. result := performBlock value: receiverTop.
  937. self assert: { 'top'. anObject } equals: { 'top'. result }.
  938. result := performBlock value: receiverMiddle.
  939. self assert: { 'middle'. anObject2 } equals: { 'middle'. result }.
  940. result := performBlock value: receiverBottom.
  941. self assert: { 'bottom'. anObject3 } equals: { 'bottom'. result }
  942. ! !
  943. !MethodInheritanceTest methodsFor: 'tests'!
  944. testMNU11
  945. performBlock := [ :x | x foo ].
  946. self shouldMNU.
  947. self installTop: 'foo ^ false'.
  948. self installTop: 'foo ^ true'.
  949. self deinstallTop.
  950. self shouldMNU
  951. !
  952. testMNU22
  953. performBlock := [ :x | x foo ].
  954. self shouldMNU.
  955. self installMiddle: 'foo ^ false'.
  956. self installMiddle: 'foo ^ true'.
  957. self deinstallMiddle.
  958. self shouldMNU
  959. !
  960. testReturns1
  961. performBlock := [ :x | x foo ].
  962. self installTop: 'foo ^ false'.
  963. self shouldReturn: false.
  964. self installTop: 'foo ^ true'.
  965. self shouldReturn: true
  966. ! !
  967. TestCase subclass: #NumberTest
  968. instanceVariableNames: ''
  969. package: 'Kernel-Tests'!
  970. !NumberTest methodsFor: 'tests'!
  971. testAbs
  972. self assert: 4 abs equals: 4.
  973. self assert: -4 abs equals: 4
  974. !
  975. testArithmetic
  976. "We rely on JS here, so we won't test complex behavior, just check if
  977. message sends are corrects"
  978. self assert: 1.5 + 1 equals: 2.5.
  979. self assert: 2 - 1 equals: 1.
  980. self assert: -2 - 1 equals: -3.
  981. self assert: 12 / 2 equals: 6.
  982. self assert: 3 * 4 equals: 12.
  983. "Simple parenthesis and execution order"
  984. self assert: 1 + 2 * 3 equals: 9.
  985. self assert: 1 + (2 * 3) equals: 7
  986. !
  987. testAsNumber
  988. self assert: 3 asNumber equals: 3.
  989. !
  990. testCeiling
  991. self assert: 1.2 ceiling equals: 2.
  992. self assert: -1.2 ceiling equals: -1.
  993. self assert: 1.0 ceiling equals: 1.
  994. !
  995. testComparison
  996. self assert: 3 > 2.
  997. self assert: 2 < 3.
  998. self deny: 3 < 2.
  999. self deny: 2 > 3.
  1000. self assert: 3 >= 3.
  1001. self assert: 3.1 >= 3.
  1002. self assert: 3 <= 3.
  1003. self assert: 3 <= 3.1
  1004. !
  1005. testCopying
  1006. self assert: 1 copy == 1.
  1007. self assert: 1 deepCopy == 1
  1008. !
  1009. testEquality
  1010. self assert: (1 = 1).
  1011. self assert: (0 = 0).
  1012. self deny: (1 = 0).
  1013. self assert: (1 yourself = 1).
  1014. self assert: (1 = 1 yourself).
  1015. self assert: (1 yourself = 1 yourself).
  1016. self deny: 0 = false.
  1017. self deny: false = 0.
  1018. self deny: '' = 0.
  1019. self deny: 0 = ''
  1020. !
  1021. testFloor
  1022. self assert: 1.2 floor equals: 1.
  1023. self assert: -1.2 floor equals: -2.
  1024. self assert: 1.0 floor equals: 1.
  1025. !
  1026. testHexNumbers
  1027. self assert: 16r9 equals: 9.
  1028. self assert: 16rA truncated equals: 10.
  1029. self assert: 16rB truncated equals: 11.
  1030. self assert: 16rC truncated equals: 12.
  1031. self assert: 16rD truncated equals: 13.
  1032. self assert: 16rE truncated equals: 14.
  1033. self assert: 16rF truncated equals: 15
  1034. !
  1035. testIdentity
  1036. self assert: 1 == 1.
  1037. self assert: 0 == 0.
  1038. self deny: 1 == 0.
  1039. self assert: 1 yourself == 1.
  1040. self assert: 1 == 1 yourself.
  1041. self assert: 1 yourself == 1 yourself.
  1042. self deny: 1 == 2
  1043. !
  1044. testInvalidHexNumbers
  1045. self should: [16rG] raise: MessageNotUnderstood.
  1046. self should: [16rg] raise: MessageNotUnderstood.
  1047. self should: [16rH] raise: MessageNotUnderstood.
  1048. self should: [16rh] raise: MessageNotUnderstood.
  1049. self should: [16rI] raise: MessageNotUnderstood.
  1050. self should: [16ri] raise: MessageNotUnderstood.
  1051. self should: [16rJ] raise: MessageNotUnderstood.
  1052. self should: [16rj] raise: MessageNotUnderstood.
  1053. self should: [16rK] raise: MessageNotUnderstood.
  1054. self should: [16rk] raise: MessageNotUnderstood.
  1055. self should: [16rL] raise: MessageNotUnderstood.
  1056. self should: [16rl] raise: MessageNotUnderstood.
  1057. self should: [16rM] raise: MessageNotUnderstood.
  1058. self should: [16rm] raise: MessageNotUnderstood.
  1059. self should: [16rN] raise: MessageNotUnderstood.
  1060. self should: [16rn] raise: MessageNotUnderstood.
  1061. self should: [16rO] raise: MessageNotUnderstood.
  1062. self should: [16ro] raise: MessageNotUnderstood.
  1063. self should: [16rP] raise: MessageNotUnderstood.
  1064. self should: [16rp] raise: MessageNotUnderstood.
  1065. self should: [16rQ] raise: MessageNotUnderstood.
  1066. self should: [16rq] raise: MessageNotUnderstood.
  1067. self should: [16rR] raise: MessageNotUnderstood.
  1068. self should: [16rr] raise: MessageNotUnderstood.
  1069. self should: [16rS] raise: MessageNotUnderstood.
  1070. self should: [16rs] raise: MessageNotUnderstood.
  1071. self should: [16rT] raise: MessageNotUnderstood.
  1072. self should: [16rt] raise: MessageNotUnderstood.
  1073. self should: [16rU] raise: MessageNotUnderstood.
  1074. self should: [16ru] raise: MessageNotUnderstood.
  1075. self should: [16rV] raise: MessageNotUnderstood.
  1076. self should: [16rv] raise: MessageNotUnderstood.
  1077. self should: [16rW] raise: MessageNotUnderstood.
  1078. self should: [16rw] raise: MessageNotUnderstood.
  1079. self should: [16rX] raise: MessageNotUnderstood.
  1080. self should: [16rx] raise: MessageNotUnderstood.
  1081. self should: [16rY] raise: MessageNotUnderstood.
  1082. self should: [16ry] raise: MessageNotUnderstood.
  1083. self should: [16rZ] raise: MessageNotUnderstood.
  1084. self should: [16rz] raise: MessageNotUnderstood.
  1085. self should: [16rABcdEfZ] raise: MessageNotUnderstood.
  1086. !
  1087. testMinMax
  1088. self assert: (2 max: 5) equals: 5.
  1089. self assert: (2 min: 5) equals: 2
  1090. !
  1091. testNegated
  1092. self assert: 3 negated equals: -3.
  1093. self assert: -3 negated equals: 3
  1094. !
  1095. testPrintShowingDecimalPlaces
  1096. self assert: (23 printShowingDecimalPlaces: 2) equals: '23.00'.
  1097. self assert: (23.5698 printShowingDecimalPlaces: 2) equals: '23.57'.
  1098. self assert: (234.567 negated printShowingDecimalPlaces: 5) equals: '-234.56700'.
  1099. self assert: (23.4567 printShowingDecimalPlaces: 0) equals: '23'.
  1100. self assert: (23.5567 printShowingDecimalPlaces: 0) equals: '24'.
  1101. self assert: (23.4567 negated printShowingDecimalPlaces: 0) equals: '-23'.
  1102. self assert: (23.5567 negated printShowingDecimalPlaces: 0) equals: '-24'.
  1103. self assert: (100000000 printShowingDecimalPlaces: 1) equals: '100000000.0'.
  1104. self assert: (0.98 printShowingDecimalPlaces: 5) equals: '0.98000'.
  1105. self assert: (0.98 negated printShowingDecimalPlaces: 2) equals: '-0.98'.
  1106. self assert: (2.567 printShowingDecimalPlaces: 2) equals: '2.57'.
  1107. self assert: (-2.567 printShowingDecimalPlaces: 2) equals: '-2.57'.
  1108. self assert: (0 printShowingDecimalPlaces: 2) equals: '0.00'.
  1109. !
  1110. testRounded
  1111. self assert: 3 rounded equals: 3.
  1112. self assert: 3.212 rounded equals: 3.
  1113. self assert: 3.51 rounded equals: 4
  1114. !
  1115. testSqrt
  1116. self assert: 4 sqrt equals: 2.
  1117. self assert: 16 sqrt equals: 4
  1118. !
  1119. testSquared
  1120. self assert: 4 squared equals: 16
  1121. !
  1122. testTimesRepeat
  1123. | i |
  1124. i := 0.
  1125. 0 timesRepeat: [i := i + 1].
  1126. self assert: i equals: 0.
  1127. 5 timesRepeat: [i := i + 1].
  1128. self assert: i equals: 5
  1129. !
  1130. testTo
  1131. self assert: (1 to: 5) equals: #(1 2 3 4 5)
  1132. !
  1133. testToBy
  1134. self assert: (0 to: 6 by: 2) equals: #(0 2 4 6).
  1135. self should: [1 to: 4 by: 0] raise: Error
  1136. !
  1137. testTruncated
  1138. self assert: 3 truncated equals: 3.
  1139. self assert: 3.212 truncated equals: 3.
  1140. self assert: 3.51 truncated equals: 3
  1141. ! !
  1142. Object subclass: #ObjectMock
  1143. instanceVariableNames: 'foo bar'
  1144. package: 'Kernel-Tests'!
  1145. !ObjectMock commentStamp!
  1146. ObjectMock is there only to perform tests on classes.!
  1147. !ObjectMock methodsFor: 'not yet classified'!
  1148. foo
  1149. ^foo
  1150. !
  1151. foo: anObject
  1152. foo := anObject
  1153. ! !
  1154. TestCase subclass: #ObjectTest
  1155. instanceVariableNames: ''
  1156. package: 'Kernel-Tests'!
  1157. !ObjectTest methodsFor: 'tests'!
  1158. notDefined
  1159. <return undefined;>
  1160. !
  1161. testBasicAccess
  1162. | o |
  1163. o := Object new.
  1164. o basicAt: 'a' put: 1.
  1165. self assert: (o basicAt: 'a') equals: 1.
  1166. self assert: (o basicAt: 'b') equals: nil
  1167. !
  1168. testBasicPerform
  1169. | o |
  1170. o := Object new.
  1171. o basicAt: 'func' put: ['hello'].
  1172. o basicAt: 'func2' put: [:a | a + 1].
  1173. self assert: (o basicPerform: 'func') equals: 'hello'.
  1174. self assert: (o basicPerform: 'func2' withArguments: #(3)) equals: 4
  1175. !
  1176. testDNU
  1177. self should: [Object new foo] raise: MessageNotUnderstood
  1178. !
  1179. testEquality
  1180. | o |
  1181. o := Object new.
  1182. self deny: o = Object new.
  1183. self assert: (o = o).
  1184. self assert: (o yourself = o).
  1185. self assert: (o = o yourself)
  1186. !
  1187. testHalt
  1188. self should: [Object new halt] raise: Error
  1189. !
  1190. testIdentity
  1191. | o |
  1192. o := Object new.
  1193. self deny: o == Object new.
  1194. self assert: o == o.
  1195. self assert: o yourself == o.
  1196. self assert: o == o yourself
  1197. !
  1198. testIfNil
  1199. self deny: Object new isNil.
  1200. self deny: (Object new ifNil: [true]) = true.
  1201. self assert: (Object new ifNotNil: [true]) equals: true.
  1202. self assert: (Object new ifNil: [false] ifNotNil: [true]) equals: true.
  1203. self assert: (Object new ifNotNil: [true] ifNil: [false]) equals: true
  1204. !
  1205. testInstVars
  1206. | o |
  1207. o := ObjectMock new.
  1208. self assert: (o instVarAt: #foo) equals: nil.
  1209. o instVarAt: #foo put: 1.
  1210. self assert: (o instVarAt: #foo) equals: 1.
  1211. self assert: (o instVarAt: 'foo') equals: 1
  1212. !
  1213. testNilUndefined
  1214. "nil in Smalltalk is the undefined object in JS"
  1215. self assert: self notDefined equals: nil
  1216. !
  1217. testYourself
  1218. | o |
  1219. o := ObjectMock new.
  1220. self assert: o yourself == o
  1221. !
  1222. testidentityHash
  1223. | o1 o2 |
  1224. o1 := Object new.
  1225. o2 := Object new.
  1226. self assert: o1 identityHash == o1 identityHash.
  1227. self deny: o1 identityHash == o2 identityHash
  1228. ! !
  1229. TestCase subclass: #PointTest
  1230. instanceVariableNames: ''
  1231. package: 'Kernel-Tests'!
  1232. !PointTest methodsFor: 'tests'!
  1233. testAccessing
  1234. self assert: (Point x: 3 y: 4) x equals: 3.
  1235. self assert: (Point x: 3 y: 4) y equals: 4.
  1236. self assert: (Point new x: 3) x equals: 3.
  1237. self assert: (Point new y: 4) y equals: 4
  1238. !
  1239. testArithmetic
  1240. self assert: 3@4 * (3@4 ) equals: (Point x: 9 y: 16).
  1241. self assert: 3@4 + (3@4 ) equals: (Point x: 6 y: 8).
  1242. self assert: 3@4 - (3@4 ) equals: (Point x: 0 y: 0).
  1243. self assert: 6@8 / (3@4 ) equals: (Point x: 2 y: 2)
  1244. !
  1245. testAt
  1246. self assert: 3@4 equals: (Point x: 3 y: 4)
  1247. !
  1248. testEgality
  1249. self assert: (3@4 = (3@4)).
  1250. self deny: 3@5 = (3@6)
  1251. !
  1252. testTranslateBy
  1253. self assert: (3@3 translateBy: 0@1) equals: 3@4.
  1254. self assert: (3@3 translateBy: 0@1 negated) equals: 3@2.
  1255. self assert: (3@3 translateBy: 2@3) equals: 5@6.
  1256. self assert: (3@3 translateBy: 3 negated @0) equals: 0@3.
  1257. ! !
  1258. TestCase subclass: #RandomTest
  1259. instanceVariableNames: ''
  1260. package: 'Kernel-Tests'!
  1261. !RandomTest methodsFor: 'tests'!
  1262. textNext
  1263. 10000 timesRepeat: [
  1264. | current next |
  1265. next := Random new next.
  1266. self assert: (next >= 0).
  1267. self assert: (next < 1).
  1268. self deny: current = next.
  1269. next = current]
  1270. ! !
  1271. TestCase subclass: #SetTest
  1272. instanceVariableNames: ''
  1273. package: 'Kernel-Tests'!
  1274. !SetTest methodsFor: 'tests'!
  1275. testAddRemove
  1276. | set |
  1277. set := Set new.
  1278. self assert: set isEmpty.
  1279. set add: 3.
  1280. self assert: (set includes: 3).
  1281. set add: 5.
  1282. self assert: (set includes: 5).
  1283. set remove: 3.
  1284. self deny: (set includes: 3)
  1285. !
  1286. testAt
  1287. self should: [Set new at: 1 put: 2] raise: Error
  1288. !
  1289. testCollect
  1290. self assert: (#(5 6 8) asSet collect: [ :x | x \\ 3 ]) equals: #(0 2) asSet
  1291. !
  1292. testComparing
  1293. self assert: #(0 2) asSet equals: #(0 2) asSet.
  1294. self assert: #(2 0) asSet equals: #(0 2) asSet.
  1295. self deny: #(0 2 3) asSet = #(0 2) asSet.
  1296. self deny: #(1 2) asSet = #(0 2) asSet
  1297. !
  1298. testPrintString
  1299. | set |
  1300. set := Set new.
  1301. self assert: set printString equals: 'a Set ()'.
  1302. set add: 1; add: 3.
  1303. self assert: set printString equals: 'a Set (1 3)'.
  1304. set add: 'foo'.
  1305. self assert: set printString equals: 'a Set (1 3 ''foo'')'.
  1306. set remove: 1; remove: 3.
  1307. self assert: set printString equals: 'a Set (''foo'')'.
  1308. set add: 3.
  1309. self assert: set printString equals: 'a Set (''foo'' 3)'.
  1310. set add: 3.
  1311. self assert: set printString equals: 'a Set (''foo'' 3)'
  1312. !
  1313. testSize
  1314. self assert: Set new size equals: 0.
  1315. self assert: (Set withAll: #(1 2 3 4)) size equals: 4.
  1316. self assert: (Set withAll: #(1 1 1 1)) size equals: 1
  1317. !
  1318. testUnboxedObjects
  1319. self assert: {'foo' yourself. 'foo' yourself} asSet asArray equals: #('foo')
  1320. !
  1321. testUnicity
  1322. | set |
  1323. set := Set new.
  1324. set add: 21.
  1325. set add: 'hello'.
  1326. set add: 21.
  1327. self assert: set size equals: 2.
  1328. set add: 'hello'.
  1329. self assert: set size equals: 2.
  1330. self assert: set asArray equals: #(21 'hello')
  1331. ! !
  1332. TestCase subclass: #StreamTest
  1333. instanceVariableNames: ''
  1334. package: 'Kernel-Tests'!
  1335. !StreamTest methodsFor: 'accessing'!
  1336. collectionClass
  1337. ^ self class collectionClass
  1338. !
  1339. newCollection
  1340. ^ self collectionClass new
  1341. !
  1342. newStream
  1343. ^ self collectionClass new stream
  1344. ! !
  1345. !StreamTest methodsFor: 'tests'!
  1346. testAtStartAtEnd
  1347. | stream |
  1348. stream := self newStream.
  1349. self assert: stream atStart.
  1350. self assert: stream atEnd.
  1351. stream nextPutAll: self newCollection.
  1352. self assert: stream atEnd.
  1353. self deny: stream atStart.
  1354. stream position: 1.
  1355. self deny: stream atEnd.
  1356. self deny: stream atStart
  1357. !
  1358. testContents
  1359. | stream |
  1360. stream := self newStream.
  1361. stream nextPutAll: self newCollection.
  1362. self assert: stream contents equals: self newCollection
  1363. !
  1364. testIsEmpty
  1365. | stream |
  1366. stream := self newStream.
  1367. self assert: stream isEmpty.
  1368. stream nextPutAll: self newCollection.
  1369. self deny: stream isEmpty
  1370. !
  1371. testPosition
  1372. | collection stream |
  1373. collection := self newCollection.
  1374. stream := self newStream.
  1375. stream nextPutAll: collection.
  1376. self assert: stream position equals: collection size.
  1377. stream position: 0.
  1378. self assert: stream position equals: 0.
  1379. stream next.
  1380. self assert: stream position equals: 1.
  1381. stream next.
  1382. self assert: stream position equals: 2
  1383. !
  1384. testReading
  1385. | stream collection |
  1386. collection := self newCollection.
  1387. stream := self newStream.
  1388. stream
  1389. nextPutAll: collection;
  1390. position: 0.
  1391. collection do: [ :each |
  1392. self assert: stream next equals: each ].
  1393. self assert: stream next isNil
  1394. !
  1395. testStreamContents
  1396. !
  1397. testWrite
  1398. | stream collection |
  1399. collection := self newCollection.
  1400. stream := self newStream.
  1401. collection do: [ :each | stream << each ].
  1402. self assert: stream contents equals: collection
  1403. !
  1404. testWriting
  1405. | stream collection |
  1406. collection := self newCollection.
  1407. stream := self newStream.
  1408. collection do: [ :each | stream nextPut: each ].
  1409. self assert: stream contents equals: collection.
  1410. stream := self newStream.
  1411. stream nextPutAll: collection.
  1412. self assert: stream contents equals: collection
  1413. ! !
  1414. !StreamTest class methodsFor: 'accessing'!
  1415. collectionClass
  1416. ^ nil
  1417. ! !
  1418. !StreamTest class methodsFor: 'testing'!
  1419. isAbstract
  1420. ^ self collectionClass isNil
  1421. ! !
  1422. StreamTest subclass: #ArrayStreamTest
  1423. instanceVariableNames: ''
  1424. package: 'Kernel-Tests'!
  1425. !ArrayStreamTest methodsFor: 'accessing'!
  1426. newCollection
  1427. ^ { true. 1. 3@4. 'foo' }
  1428. ! !
  1429. !ArrayStreamTest class methodsFor: 'accessing'!
  1430. collectionClass
  1431. ^ Array
  1432. ! !
  1433. StreamTest subclass: #StringStreamTest
  1434. instanceVariableNames: ''
  1435. package: 'Kernel-Tests'!
  1436. !StringStreamTest methodsFor: 'accessing'!
  1437. newCollection
  1438. ^ 'hello world'
  1439. ! !
  1440. !StringStreamTest class methodsFor: 'accessing'!
  1441. collectionClass
  1442. ^ String
  1443. ! !
  1444. TestCase subclass: #UndefinedTest
  1445. instanceVariableNames: ''
  1446. package: 'Kernel-Tests'!
  1447. !UndefinedTest methodsFor: 'tests'!
  1448. testCopying
  1449. self assert: nil copy equals: nil
  1450. !
  1451. testDeepCopy
  1452. self assert: nil deepCopy = nil
  1453. !
  1454. testIfNil
  1455. self assert: (nil ifNil: [true]) equals: true.
  1456. self deny: (nil ifNotNil: [true]) = true.
  1457. self assert: (nil ifNil: [true] ifNotNil: [false]) equals: true.
  1458. self deny: (nil ifNotNil: [true] ifNil: [false]) = true
  1459. !
  1460. testIsNil
  1461. self assert: nil isNil.
  1462. self deny: nil notNil.
  1463. ! !