Kernel-Tests.st 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612
  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. testNumArgs
  43. self assert: [] numArgs equals: 0.
  44. self assert: [:a :b | ] numArgs equals: 2
  45. !
  46. testOnDo
  47. self assert: ([Error new signal] on: Error do: [:ex | true])
  48. !
  49. testValue
  50. self assert: ([1+1] value) equals: 2.
  51. self assert: ([:x | x +1] value: 2) equals: 3.
  52. self assert: ([:x :y | x*y] value: 2 value: 4) equals: 8.
  53. "Arguments are optional in Amber. This isn't ANSI compliant."
  54. self assert: ([:a :b :c | 1] value) equals: 1
  55. !
  56. testValueWithPossibleArguments
  57. self assert: ([1] valueWithPossibleArguments: #(3 4)) equals: 1.
  58. self assert: ([:a | a + 4] valueWithPossibleArguments: #(3 4)) equals: 7.
  59. self assert: ([:a :b | a + b] valueWithPossibleArguments: #(3 4 5)) equals: 7.
  60. !
  61. testWhileFalse
  62. | i |
  63. i := 0.
  64. [i > 5] whileFalse: [i := i + 1].
  65. self assert: i equals: 6.
  66. i := 0.
  67. [i := i + 1. i > 5] whileFalse.
  68. self assert: i equals: 6
  69. !
  70. testWhileTrue
  71. | i |
  72. i := 0.
  73. [i < 5] whileTrue: [i := i + 1].
  74. self assert: i equals: 5.
  75. i := 0.
  76. [i := i + 1. i < 5] whileTrue.
  77. self assert: i equals: 5
  78. ! !
  79. TestCase subclass: #BooleanTest
  80. instanceVariableNames: ''
  81. package: 'Kernel-Tests'!
  82. !BooleanTest methodsFor: 'tests'!
  83. testEquality
  84. "We're on top of JS...just be sure to check the basics!!"
  85. self deny: 0 = false.
  86. self deny: false = 0.
  87. self deny: '' = false.
  88. self deny: false = ''.
  89. self assert: (true = true).
  90. self deny: false = true.
  91. self deny: true = false.
  92. self assert: (false = false).
  93. "JS may do some type coercing after sending a message"
  94. self assert: (true yourself = true).
  95. self assert: (true yourself = true yourself)
  96. !
  97. testIdentity
  98. "We're on top of JS...just be sure to check the basics!!"
  99. self deny: 0 == false.
  100. self deny: false == 0.
  101. self deny: '' == false.
  102. self deny: false == ''.
  103. self assert: true == true.
  104. self deny: false == true.
  105. self deny: true == false.
  106. self assert: false == false.
  107. "JS may do some type coercing after sending a message"
  108. self assert: true yourself == true.
  109. self assert: true yourself == true yourself
  110. !
  111. testIfTrueIfFalse
  112. self assert: (true ifTrue: ['alternative block']) equals: 'alternative block'.
  113. self assert: (true ifFalse: ['alternative block']) equals: nil.
  114. self assert: (false ifTrue: ['alternative block']) equals: nil.
  115. self assert: (false ifFalse: ['alternative block']) equals: 'alternative block'.
  116. self assert: (false ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.
  117. self assert: (false ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.
  118. self assert: (true ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.
  119. self assert: (true ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.
  120. !
  121. testIfTrueIfFalseWithBoxing
  122. self assert: (true yourself ifTrue: ['alternative block']) equals: 'alternative block'.
  123. self assert: (true yourself ifFalse: ['alternative block']) equals: nil.
  124. self assert: (false yourself ifTrue: ['alternative block']) equals: nil.
  125. self assert: (false yourself ifFalse: ['alternative block']) equals: 'alternative block'.
  126. self assert: (false yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.
  127. self assert: (false yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.
  128. self assert: (true yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.
  129. self assert: (true yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.
  130. !
  131. testLogic
  132. "Trivial logic table"
  133. self assert: (true & true);
  134. deny: (true & false);
  135. deny: (false & true);
  136. deny: (false & false).
  137. self assert: (true | true);
  138. assert: (true | false);
  139. assert: (false | true);
  140. deny: (false | false).
  141. "Checking that expressions work fine too"
  142. self assert: (true & (1 > 0));
  143. deny: ((1 > 0) & false);
  144. deny: ((1 > 0) & (1 > 2)).
  145. self assert: (false | (1 > 0));
  146. assert: ((1 > 0) | false);
  147. assert: ((1 > 0) | (1 > 2))
  148. !
  149. testLogicKeywords
  150. "Trivial logic table"
  151. self
  152. assert: (true and: [ true]);
  153. deny: (true and: [ false ]);
  154. deny: (false and: [ true ]);
  155. deny: (false and: [ false ]).
  156. self
  157. assert: (true or: [ true ]);
  158. assert: (true or: [ false ]);
  159. assert: (false or: [ true ]);
  160. deny: (false or: [ false ]).
  161. "Checking that expressions work fine too"
  162. self
  163. assert: (true and: [ 1 > 0 ]);
  164. deny: ((1 > 0) and: [ false ]);
  165. deny: ((1 > 0) and: [ 1 > 2 ]).
  166. self
  167. assert: (false or: [ 1 > 0 ]);
  168. assert: ((1 > 0) or: [ false ]);
  169. assert: ((1 > 0) or: [ 1 > 2 ])
  170. !
  171. testNonBooleanError
  172. self should: [ '' ifTrue: [] ifFalse: [] ] raise: NonBooleanReceiver
  173. ! !
  174. TestCase subclass: #ClassBuilderTest
  175. instanceVariableNames: 'builder theClass'
  176. package: 'Kernel-Tests'!
  177. !ClassBuilderTest methodsFor: 'running'!
  178. setUp
  179. builder := ClassBuilder new
  180. !
  181. tearDown
  182. theClass ifNotNil: [Smalltalk current removeClass: theClass. theClass := nil]
  183. ! !
  184. !ClassBuilderTest methodsFor: 'tests'!
  185. testClassCopy
  186. theClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
  187. self assert: theClass superclass == ObjectMock superclass.
  188. self assert: theClass instanceVariableNames == ObjectMock instanceVariableNames.
  189. self assert: theClass name equals: 'ObjectMock2'.
  190. self assert: theClass package == ObjectMock package.
  191. self assert: theClass methodDictionary keys equals: ObjectMock methodDictionary keys
  192. !
  193. testClassMigration
  194. | instance oldClass |
  195. oldClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
  196. instance := (Smalltalk current at: 'ObjectMock2') new.
  197. "Change the superclass of ObjectMock2"
  198. ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
  199. instanceVariableNames: ''
  200. package: 'Kernel-Tests'.
  201. self deny: oldClass == ObjectMock2.
  202. self assert: ObjectMock2 superclass == ObjectMock.
  203. self assert: ObjectMock2 instanceVariableNames isEmpty.
  204. self assert: ObjectMock2 selectors equals: oldClass selectors.
  205. self assert: ObjectMock2 comment equals: oldClass comment.
  206. self assert: ObjectMock2 package name equals: 'Kernel-Tests'.
  207. self deny: instance class == ObjectMock2.
  208. "Commeting this out. Tests implementation detail."
  209. "self assert: instance class name equals: 'OldObjectMock2'."
  210. self assert: (Smalltalk current at: instance class name) isNil.
  211. Smalltalk current removeClass: ObjectMock2
  212. !
  213. testClassMigrationWithClassInstanceVariables
  214. builder copyClass: ObjectMock named: 'ObjectMock2'.
  215. ObjectMock2 class instanceVariableNames: 'foo bar'.
  216. "Change the superclass of ObjectMock2"
  217. ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
  218. instanceVariableNames: ''
  219. package: 'Kernel-Tests'.
  220. self assert: ObjectMock2 class instanceVariableNames equals: #('foo' 'bar').
  221. Smalltalk current removeClass: ObjectMock2
  222. !
  223. testClassMigrationWithSubclasses
  224. builder copyClass: ObjectMock named: 'ObjectMock2'.
  225. ObjectMock2 subclass: 'ObjectMock3' instanceVariableNames: '' package: 'Kernel-Tests'.
  226. ObjectMock3 subclass: 'ObjectMock4' instanceVariableNames: '' package: 'Kernel-Tests'.
  227. "Change the superclass of ObjectMock2"
  228. ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
  229. instanceVariableNames: ''
  230. package: 'Kernel-Tests'.
  231. self assert: (ObjectMock subclasses includes: ObjectMock2).
  232. self assert: (ObjectMock2 subclasses includes: ObjectMock3).
  233. self assert: (ObjectMock3 subclasses includes: ObjectMock4).
  234. ObjectMock allSubclasses do: [ :each | Smalltalk current removeClass: each ]
  235. !
  236. testInstanceVariableNames
  237. self assert: (builder instanceVariableNamesFor: ' hello world ') equals: #('hello' 'world')
  238. ! !
  239. TestCase subclass: #CollectionTest
  240. instanceVariableNames: ''
  241. package: 'Kernel-Tests'!
  242. !CollectionTest methodsFor: 'accessing'!
  243. collection
  244. ^ self collectionClass withAll: self defaultValues
  245. !
  246. collectionClass
  247. ^ self class collectionClass
  248. !
  249. collectionWithDuplicates
  250. ^ self collectionClass withAll: #('a' 'b' 'c' 1 2 1 'a')
  251. !
  252. defaultValues
  253. ^ #(1 2 3 -4)
  254. ! !
  255. !CollectionTest methodsFor: 'convenience'!
  256. assertSameContents: aCollection as: anotherCollection
  257. self assert: (aCollection size = anotherCollection size).
  258. aCollection do: [ :each |
  259. self assert: ((aCollection occurrencesOf: each) = (anotherCollection occurrencesOf: each)) ]
  260. ! !
  261. !CollectionTest methodsFor: 'testing'!
  262. isCollectionReadOnly
  263. ^ false
  264. ! !
  265. !CollectionTest methodsFor: 'tests'!
  266. testAsArray
  267. self
  268. assertSameContents: self collection
  269. as: self collection asArray
  270. !
  271. testAsOrderedCollection
  272. self
  273. assertSameContents: self collection
  274. as: self collection asOrderedCollection
  275. !
  276. testAsSet
  277. | c set |
  278. c := self collectionWithDuplicates.
  279. set := c asSet.
  280. self assert: set size equals: 5.
  281. c do: [ :each |
  282. self assert: (set includes: each) ]
  283. !
  284. testCollect
  285. | newCollection |
  286. newCollection := #(1 2 3 4).
  287. self
  288. assertSameContents: (self collection collect: [ :each |
  289. each abs ])
  290. as: newCollection
  291. !
  292. testDetect
  293. self assert: (self collection detect: [ :each | each < 0 ]) equals: -4.
  294. self
  295. should: [ self collection detect: [ :each | each = 6 ] ]
  296. raise: Error
  297. !
  298. testDo
  299. | newCollection |
  300. newCollection := OrderedCollection new.
  301. self collection do: [ :each |
  302. newCollection add: each ].
  303. self
  304. assertSameContents: self collection
  305. as: newCollection
  306. !
  307. testIsEmpty
  308. self assert: self collectionClass new isEmpty.
  309. self deny: self collection isEmpty
  310. !
  311. testSelect
  312. | newCollection |
  313. newCollection := #(2 -4).
  314. self
  315. assertSameContents: (self collection select: [ :each |
  316. each even ])
  317. as: newCollection
  318. !
  319. testSize
  320. self assert: self collectionClass new size equals: 0.
  321. self assert: self collection size equals: 4
  322. ! !
  323. !CollectionTest class methodsFor: 'accessing'!
  324. collectionClass
  325. ^ nil
  326. ! !
  327. !CollectionTest class methodsFor: 'testing'!
  328. isAbstract
  329. ^ self collectionClass isNil
  330. ! !
  331. CollectionTest subclass: #HashedCollectionTest
  332. instanceVariableNames: ''
  333. package: 'Kernel-Tests'!
  334. !HashedCollectionTest methodsFor: 'accessing'!
  335. collection
  336. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4 }
  337. !
  338. collectionWithDuplicates
  339. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4. 'e' -> 1. 'f' -> 2. 'g' -> 10 }
  340. ! !
  341. !HashedCollectionTest methodsFor: 'tests'!
  342. testIndexOf
  343. self assert: (self collection indexOf: 2) equals: 'a'.
  344. self should: [ self collection indexOf: 999 ] raise: Error.
  345. self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
  346. ! !
  347. !HashedCollectionTest class methodsFor: 'accessing'!
  348. collectionClass
  349. ^ HashedCollection
  350. ! !
  351. HashedCollectionTest subclass: #DictionaryTest
  352. instanceVariableNames: ''
  353. package: 'Kernel-Tests'!
  354. !DictionaryTest methodsFor: 'accessing'!
  355. collection
  356. ^ Dictionary new
  357. at: 1 put: 1;
  358. at: 'a' put: 2;
  359. at: true put: 3;
  360. at: 4 put: -4;
  361. yourself
  362. !
  363. collectionWithDuplicates
  364. ^ Dictionary new
  365. at: 1 put: 1;
  366. at: 'a' put: 2;
  367. at: true put: 3;
  368. at: 4 put: -4;
  369. at: 'b' put: 1;
  370. at: 3 put: 3;
  371. at: false put: 12;
  372. yourself
  373. ! !
  374. !DictionaryTest methodsFor: 'tests'!
  375. testAccessing
  376. | d |
  377. d := Dictionary new.
  378. d at: 'hello' put: 'world'.
  379. self assert: (d at: 'hello') equals: 'world'.
  380. self assert: (d at: 'hello' ifAbsent: [nil]) equals: 'world'.
  381. self deny: (d at: 'foo' ifAbsent: [nil]) = 'world'.
  382. self assert: (d includesKey: 'hello').
  383. self deny: (d includesKey: 'foo').
  384. d at: 1 put: 2.
  385. self assert: (d at: 1) equals: 2.
  386. d at: 1@3 put: 3.
  387. self assert: (d at: 1@3) equals: 3.
  388. self assert: (d includesKey: 1@3).
  389. self deny: (d includesKey: 3@1)
  390. !
  391. testDynamicDictionaries
  392. self assert: #{'hello' -> 1} asDictionary equals: (Dictionary with: 'hello' -> 1)
  393. !
  394. testEquality
  395. | d1 d2 |
  396. self assert: (Dictionary new = Dictionary new).
  397. d1 := Dictionary new at: 1 put: 2; yourself.
  398. d2 := Dictionary new at: 1 put: 2; yourself.
  399. self assert: (d1 = d2).
  400. d2 := Dictionary new at: 1 put: 3; yourself.
  401. self deny: d1 = d2.
  402. d2 := Dictionary new at: 2 put: 2; yourself.
  403. self deny: d1 = d2.
  404. d2 := Dictionary new at: 1 put: 2; at: 3 put: 4; yourself.
  405. self deny: d1 = d2.
  406. !
  407. testIfAbsent
  408. | d visited |
  409. visited := false.
  410. d := Dictionary new.
  411. d at: 'hello' ifAbsent: [ visited := true ].
  412. self assert: visited.
  413. !
  414. testIfPresent
  415. | d visited absent |
  416. visited := false.
  417. d := Dictionary new.
  418. d at: 'hello' put: 'world'.
  419. d at: 'hello' ifPresent: [ :value | visited := value ].
  420. self assert: visited equals: 'world'.
  421. absent := d at: 'bye' ifPresent: [ :value | visited := value ].
  422. self assert: absent isNil.
  423. !
  424. testIfPresentIfAbsent
  425. | d visited |
  426. visited := false.
  427. d := Dictionary new.
  428. d at: 'hello' put: 'world'.
  429. d at: 'hello' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].
  430. self assert: visited equals: 'world'.
  431. d at: 'buy' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].
  432. self assert: visited.
  433. !
  434. testKeys
  435. | d |
  436. d := Dictionary new.
  437. d at: 1 put: 2.
  438. d at: 2 put: 3.
  439. d at: 3 put: 4.
  440. self assert: d keys equals: #(1 2 3)
  441. !
  442. testPointKey
  443. | d |
  444. d := Dictionary new.
  445. d at: 1@1 put: 'foo'.
  446. self assert: (d at: 1@1) equals: 'foo'.
  447. d at: 1@1 put: 'bar'.
  448. self assert: (d at: 1@1) equals: 'bar'.
  449. d removeKey: 1@1.
  450. self assert: (d at: 1@1 ifAbsent: [ 'baz' ]) equals: 'baz'.
  451. self deny: (d includesKey: 1@1)
  452. !
  453. testPrintString
  454. self
  455. assert: (Dictionary new
  456. at:'firstname' put: 'James';
  457. at:'lastname' put: 'Bond';
  458. printString)
  459. equals: 'a Dictionary(''firstname''->''James'' , ''lastname''->''Bond'')'
  460. !
  461. testRemoveKey
  462. | d key |
  463. d := Dictionary new.
  464. d at: 1 put: 2.
  465. d at: 2 put: 3.
  466. d at: 3 put: 4.
  467. key := 2.
  468. self assert: d keys equals: #(1 2 3).
  469. d removeKey: key.
  470. self assert: d keys equals: #(1 3).
  471. self assert: d values equals: #(2 4).
  472. self deny: (d includesKey: 2)
  473. !
  474. testRemoveKeyIfAbsent
  475. | d key |
  476. d := Dictionary new.
  477. d at: 1 put: 2.
  478. d at: 2 put: 3.
  479. d at: 3 put: 4.
  480. key := 2.
  481. self assert: (d removeKey: key) equals: 3.
  482. key := 3.
  483. self assert: (d removeKey: key ifAbsent: [42]) equals: 4.
  484. key := 'why'.
  485. self assert: (d removeKey: key ifAbsent: [42] ) equals: 42.
  486. !
  487. testSize
  488. | d |
  489. d := Dictionary new.
  490. self assert: d size equals: 0.
  491. d at: 1 put: 2.
  492. self assert: d size equals: 1.
  493. d at: 2 put: 3.
  494. self assert: d size equals: 2.
  495. !
  496. testValues
  497. | d |
  498. d := Dictionary new.
  499. d at: 1 put: 2.
  500. d at: 2 put: 3.
  501. d at: 3 put: 4.
  502. self assert: d values equals: #(2 3 4)
  503. ! !
  504. !DictionaryTest class methodsFor: 'accessing'!
  505. collectionClass
  506. ^ Dictionary
  507. ! !
  508. CollectionTest subclass: #SequenceableCollectionTest
  509. instanceVariableNames: ''
  510. package: 'Kernel-Tests'!
  511. !SequenceableCollectionTest methodsFor: 'tests'!
  512. testAt
  513. self assert: (self collection at: 4) equals: -4.
  514. self should: [ self collection at: 5 ] raise: Error
  515. !
  516. testAtIfAbsent
  517. self assert: (self collection at: (self collection size + 1) ifAbsent: [ 'none' ]) equals: 'none'
  518. ! !
  519. SequenceableCollectionTest subclass: #ArrayTest
  520. instanceVariableNames: ''
  521. package: 'Kernel-Tests'!
  522. !ArrayTest methodsFor: 'tests'!
  523. testAtIfAbsent
  524. | array |
  525. array := #('hello' 'world').
  526. self assert: (array at: 1) equals: 'hello'.
  527. self assert: (array at: 2) equals: 'world'.
  528. self assert: (array at: 2 ifAbsent: ['not found']) equals: 'world'.
  529. self assert: (array at: 0 ifAbsent: ['not found']) equals: 'not found'.
  530. self assert: (array at: -10 ifAbsent: ['not found']) equals: 'not found'.
  531. self assert: (array at: 3 ifAbsent: ['not found']) equals: 'not found'.
  532. !
  533. testFirstN
  534. self assert: ({1. 2. 3. 4. 5} first: 3) equals: {1. 2. 3}
  535. !
  536. testIfEmpty
  537. self assert: ( '' ifEmpty: ['zork'] ) equals: 'zork'
  538. !
  539. testPrintString
  540. | array |
  541. array := Array new.
  542. self assert: array printString equals: 'a Array ()'.
  543. array add: 1; add: 3.
  544. self assert: array printString equals: 'a Array (1 3)'.
  545. array add: 'foo'.
  546. self assert: array printString equals: 'a Array (1 3 ''foo'')'.
  547. array remove: 1; remove: 3.
  548. self assert: array printString equals: 'a Array (''foo'')'.
  549. array addLast: 3.
  550. self assert: array printString equals: 'a Array (''foo'' 3)'.
  551. array addLast: 3.
  552. self assert: array printString equals: 'a Array (''foo'' 3 3)'.
  553. ! !
  554. !ArrayTest class methodsFor: 'accessing'!
  555. collectionClass
  556. ^ Array
  557. ! !
  558. SequenceableCollectionTest subclass: #StringTest
  559. instanceVariableNames: ''
  560. package: 'Kernel-Tests'!
  561. !StringTest methodsFor: 'accessing'!
  562. collection
  563. ^'hello'
  564. !
  565. collectionWithDuplicates
  566. ^ 'abbaerte'
  567. ! !
  568. !StringTest methodsFor: 'tests'!
  569. testAddRemove
  570. self should: ['hello' add: 'a'] raise: Error.
  571. self should: ['hello' remove: 'h'] raise: Error
  572. !
  573. testAsArray
  574. self assert: 'hello' asArray equals: #('h' 'e' 'l' 'l' 'o').
  575. !
  576. testAt
  577. self assert: ('hello' at: 1) equals: 'h'.
  578. self assert: ('hello' at: 5) equals: 'o'.
  579. self assert: ('hello' at: 6 ifAbsent: [nil]) equals: nil
  580. !
  581. testAtPut
  582. "String instances are read-only"
  583. self should: ['hello' at: 1 put: 'a'] raise: Error
  584. !
  585. testCollect
  586. | newCollection |
  587. newCollection := 'hheelllloo'.
  588. self
  589. assertSameContents: (self collection collect: [ :each |
  590. each, each ])
  591. as: newCollection
  592. !
  593. testCopyWithoutAll
  594. self
  595. assert: ('*hello* *world*' copyWithoutAll: '*')
  596. equals: 'hello world'
  597. !
  598. testDetect
  599. self assert: (self collection detect: [ :each | each = 'h' ]) equals: 'h'.
  600. self
  601. should: [ self collection detect: [ :each | each = 6 ] ]
  602. raise: Error
  603. !
  604. testEquality
  605. self assert: 'hello' equals: 'hello'.
  606. self deny: 'hello' = 'world'.
  607. self assert: 'hello' equals: 'hello' yourself.
  608. self assert: 'hello' yourself equals: 'hello'.
  609. "test JS falsy value"
  610. self deny: '' = 0
  611. !
  612. testIdentity
  613. self assert: 'hello' == 'hello'.
  614. self deny: 'hello' == 'world'.
  615. self assert: 'hello' == 'hello' yourself.
  616. self assert: 'hello' yourself == 'hello'.
  617. "test JS falsy value"
  618. self deny: '' == 0
  619. !
  620. testIncludesSubString
  621. self assert: ('amber' includesSubString: 'ber').
  622. self deny: ('amber' includesSubString: 'zork').
  623. !
  624. testJoin
  625. self assert: (',' join: #('hello' 'world')) equals: 'hello,world'
  626. !
  627. testSelect
  628. | newCollection |
  629. newCollection := 'o'.
  630. self
  631. assertSameContents: (self collection select: [ :each |
  632. each = 'o' ])
  633. as: newCollection
  634. !
  635. testSize
  636. self assert: 'smalltalk' size equals: 9.
  637. self assert: '' size equals: 0
  638. !
  639. testStreamContents
  640. self
  641. assert: (String streamContents: [ :aStream |
  642. aStream
  643. nextPutAll: 'hello'; space;
  644. nextPutAll: 'world' ])
  645. equals: 'hello world'
  646. ! !
  647. !StringTest class methodsFor: 'accessing'!
  648. collectionClass
  649. ^ String
  650. ! !
  651. SequenceableCollectionTest subclass: #SymbolTest
  652. instanceVariableNames: ''
  653. package: 'Kernel-Tests'!
  654. !SymbolTest methodsFor: 'accessing'!
  655. collection
  656. ^ #hello
  657. !
  658. collectionWithDuplicates
  659. ^ #phhaaarorra
  660. ! !
  661. !SymbolTest methodsFor: 'tests'!
  662. testAsString
  663. self assert: #hello asString equals: 'hello'
  664. !
  665. testAsSymbol
  666. self assert: #hello == #hello asSymbol
  667. !
  668. testAt
  669. self assert: (#hello at: 1) equals: 'h'.
  670. self assert: (#hello at: 5) equals: 'o'.
  671. self assert: (#hello at: 6 ifAbsent: [nil]) equals: nil
  672. !
  673. testAtPut
  674. "Symbol instances are read-only"
  675. self should: ['hello' at: 1 put: 'a'] raise: Error
  676. !
  677. testCollect
  678. | newCollection |
  679. newCollection := #hheelllloo.
  680. self
  681. assertSameContents: (self collection collect: [ :each |
  682. each, each ])
  683. as: newCollection
  684. !
  685. testComparing
  686. self assert: #ab > #aa.
  687. self deny: #ab > #ba.
  688. self assert: #ab < #ba.
  689. self deny: #bb < #ba.
  690. self assert: #ab >= #aa.
  691. self deny: #ab >= #ba.
  692. self assert: #ab <= #ba.
  693. self deny: #bb <= #ba
  694. !
  695. testCopying
  696. self assert: #hello copy == #hello.
  697. self assert: #hello deepCopy == #hello
  698. !
  699. testDetect
  700. self assert: (self collection detect: [ :each | each = 'h' ]) equals: 'h'.
  701. self
  702. should: [ self collection detect: [ :each | each = 'z' ] ]
  703. raise: Error
  704. !
  705. testEquality
  706. self assert: (#hello = #hello).
  707. self deny: #hello = #world.
  708. self assert: (#hello = #hello yourself).
  709. self assert: (#hello yourself = #hello).
  710. self deny: #hello = 'hello'.
  711. self deny: 'hello' = #hello.
  712. !
  713. testIdentity
  714. self assert: #hello == #hello.
  715. self deny: #hello == #world.
  716. self assert: #hello = #hello yourself.
  717. self assert: #hello yourself = #hello asString asSymbol
  718. !
  719. testIsEmpty
  720. self deny: self collection isEmpty.
  721. self assert: '' asSymbol isEmpty
  722. !
  723. testIsSymbolIsString
  724. self assert: #hello isSymbol.
  725. self deny: 'hello' isSymbol.
  726. self deny: #hello isString.
  727. self assert: 'hello' isString
  728. !
  729. testSelect
  730. | newCollection |
  731. newCollection := 'o'.
  732. self
  733. assertSameContents: (self collection select: [ :each |
  734. each = 'o' ])
  735. as: newCollection
  736. !
  737. testSize
  738. self assert: #a size equals: 1.
  739. self assert: #aaaaa size equals: 5
  740. ! !
  741. !SymbolTest class methodsFor: 'accessing'!
  742. collectionClass
  743. ^ Symbol
  744. ! !
  745. TestCase subclass: #JSObjectProxyTest
  746. instanceVariableNames: ''
  747. package: 'Kernel-Tests'!
  748. !JSObjectProxyTest methodsFor: 'accessing'!
  749. jsObject
  750. <return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': undefined}>
  751. ! !
  752. !JSObjectProxyTest methodsFor: 'tests'!
  753. testAtIfAbsent
  754. | testObject |
  755. testObject := self jsObject.
  756. self assert: (testObject at: 'abc' ifAbsent: ['Property does not exist']) equals: 'Property does not exist'.
  757. self assert: (testObject at: 'e' ifAbsent: ['Property does not exist']) equals: nil.
  758. self assert: (testObject at: 'a' ifAbsent: ['Property does not exist']) equals: 1.
  759. self assert: (testObject at: 'f' ifAbsent: ['Property does not exist']) equals: nil.
  760. !
  761. testDNU
  762. self should: [self jsObject foo] raise: MessageNotUnderstood
  763. !
  764. testMessageSend
  765. self assert: self jsObject a equals: 1.
  766. self assert: self jsObject b equals: 2.
  767. self assert: (self jsObject c: 3) equals: 3
  768. !
  769. testMethodWithArguments
  770. self assert: (self jsObject c: 1) equals: 1
  771. !
  772. testPrinting
  773. self assert: self jsObject printString equals: '[object Object]'
  774. !
  775. testPropertyThatReturnsEmptyString
  776. | object |
  777. object := self jsObject.
  778. self assert: object d equals: ''.
  779. object d: 'hello'.
  780. self assert: object d equals: 'hello'
  781. !
  782. testPropertyThatReturnsUndefined
  783. | object |
  784. object := self jsObject.
  785. self shouldnt: [ object e ] raise: MessageNotUnderstood.
  786. self assert: object e isNil
  787. !
  788. testValue
  789. | testObject |
  790. testObject := self jsObject.
  791. self assert: testObject value printString equals: '[object Object]'.
  792. testObject at: 'value' put: 'aValue'.
  793. self assert: testObject value equals: 'aValue'
  794. !
  795. testYourself
  796. | object |
  797. object := self jsObject
  798. d: 'test';
  799. yourself.
  800. self assert: object d equals: 'test'
  801. ! !
  802. TestCase subclass: #JavaScriptExceptionTest
  803. instanceVariableNames: ''
  804. package: 'Kernel-Tests'!
  805. !JavaScriptExceptionTest methodsFor: 'helpers'!
  806. throwException
  807. <throw 'test'>
  808. ! !
  809. !JavaScriptExceptionTest methodsFor: 'tests'!
  810. testCatchingException
  811. [ self throwException ]
  812. on: Error
  813. do: [ :error |
  814. self assert: error exception = 'test' ]
  815. !
  816. testRaisingException
  817. self should: [ self throwException ] raise: JavaScriptException
  818. ! !
  819. TestCase subclass: #NumberTest
  820. instanceVariableNames: ''
  821. package: 'Kernel-Tests'!
  822. !NumberTest methodsFor: 'tests'!
  823. testAbs
  824. self assert: 4 abs equals: 4.
  825. self assert: -4 abs equals: 4
  826. !
  827. testArithmetic
  828. "We rely on JS here, so we won't test complex behavior, just check if
  829. message sends are corrects"
  830. self assert: 1.5 + 1 equals: 2.5.
  831. self assert: 2 - 1 equals: 1.
  832. self assert: -2 - 1 equals: -3.
  833. self assert: 12 / 2 equals: 6.
  834. self assert: 3 * 4 equals: 12.
  835. "Simple parenthesis and execution order"
  836. self assert: 1 + 2 * 3 equals: 9.
  837. self assert: 1 + (2 * 3) equals: 7
  838. !
  839. testComparison
  840. self assert: 3 > 2.
  841. self assert: 2 < 3.
  842. self deny: 3 < 2.
  843. self deny: 2 > 3.
  844. self assert: 3 >= 3.
  845. self assert: 3.1 >= 3.
  846. self assert: 3 <= 3.
  847. self assert: 3 <= 3.1
  848. !
  849. testCopying
  850. self assert: 1 copy == 1.
  851. self assert: 1 deepCopy == 1
  852. !
  853. testEquality
  854. self assert: (1 = 1).
  855. self assert: (0 = 0).
  856. self deny: (1 = 0).
  857. self assert: (1 yourself = 1).
  858. self assert: (1 = 1 yourself).
  859. self assert: (1 yourself = 1 yourself).
  860. self deny: 0 = false.
  861. self deny: false = 0.
  862. self deny: '' = 0.
  863. self deny: 0 = ''
  864. !
  865. testHexNumbers
  866. self assert: 16r9 equals: 9.
  867. self assert: 16rA truncated equals: 10.
  868. self assert: 16rB truncated equals: 11.
  869. self assert: 16rC truncated equals: 12.
  870. self assert: 16rD truncated equals: 13.
  871. self assert: 16rE truncated equals: 14.
  872. self assert: 16rF truncated equals: 15
  873. !
  874. testIdentity
  875. self assert: 1 == 1.
  876. self assert: 0 == 0.
  877. self deny: 1 == 0.
  878. self assert: 1 yourself == 1.
  879. self assert: 1 == 1 yourself.
  880. self assert: 1 yourself == 1 yourself.
  881. self deny: 1 == 2
  882. !
  883. testInvalidHexNumbers
  884. self should: [16rG] raise: MessageNotUnderstood.
  885. self should: [16rg] raise: MessageNotUnderstood.
  886. self should: [16rH] raise: MessageNotUnderstood.
  887. self should: [16rh] raise: MessageNotUnderstood.
  888. self should: [16rI] raise: MessageNotUnderstood.
  889. self should: [16ri] raise: MessageNotUnderstood.
  890. self should: [16rJ] raise: MessageNotUnderstood.
  891. self should: [16rj] raise: MessageNotUnderstood.
  892. self should: [16rK] raise: MessageNotUnderstood.
  893. self should: [16rk] raise: MessageNotUnderstood.
  894. self should: [16rL] raise: MessageNotUnderstood.
  895. self should: [16rl] raise: MessageNotUnderstood.
  896. self should: [16rM] raise: MessageNotUnderstood.
  897. self should: [16rm] raise: MessageNotUnderstood.
  898. self should: [16rN] raise: MessageNotUnderstood.
  899. self should: [16rn] raise: MessageNotUnderstood.
  900. self should: [16rO] raise: MessageNotUnderstood.
  901. self should: [16ro] raise: MessageNotUnderstood.
  902. self should: [16rP] raise: MessageNotUnderstood.
  903. self should: [16rp] raise: MessageNotUnderstood.
  904. self should: [16rQ] raise: MessageNotUnderstood.
  905. self should: [16rq] raise: MessageNotUnderstood.
  906. self should: [16rR] raise: MessageNotUnderstood.
  907. self should: [16rr] raise: MessageNotUnderstood.
  908. self should: [16rS] raise: MessageNotUnderstood.
  909. self should: [16rs] raise: MessageNotUnderstood.
  910. self should: [16rT] raise: MessageNotUnderstood.
  911. self should: [16rt] raise: MessageNotUnderstood.
  912. self should: [16rU] raise: MessageNotUnderstood.
  913. self should: [16ru] raise: MessageNotUnderstood.
  914. self should: [16rV] raise: MessageNotUnderstood.
  915. self should: [16rv] raise: MessageNotUnderstood.
  916. self should: [16rW] raise: MessageNotUnderstood.
  917. self should: [16rw] raise: MessageNotUnderstood.
  918. self should: [16rX] raise: MessageNotUnderstood.
  919. self should: [16rx] raise: MessageNotUnderstood.
  920. self should: [16rY] raise: MessageNotUnderstood.
  921. self should: [16ry] raise: MessageNotUnderstood.
  922. self should: [16rZ] raise: MessageNotUnderstood.
  923. self should: [16rz] raise: MessageNotUnderstood.
  924. self should: [16rABcdEfZ] raise: MessageNotUnderstood.
  925. !
  926. testMinMax
  927. self assert: (2 max: 5) equals: 5.
  928. self assert: (2 min: 5) equals: 2
  929. !
  930. testNegated
  931. self assert: 3 negated equals: -3.
  932. self assert: -3 negated equals: 3
  933. !
  934. testPrintShowingDecimalPlaces
  935. self assert: (23 printShowingDecimalPlaces: 2) equals: '23.00'.
  936. self assert: (23.5698 printShowingDecimalPlaces: 2) equals: '23.57'.
  937. self assert: (234.567 negated printShowingDecimalPlaces: 5) equals: '-234.56700'.
  938. self assert: (23.4567 printShowingDecimalPlaces: 0) equals: '23'.
  939. self assert: (23.5567 printShowingDecimalPlaces: 0) equals: '24'.
  940. self assert: (23.4567 negated printShowingDecimalPlaces: 0) equals: '-23'.
  941. self assert: (23.5567 negated printShowingDecimalPlaces: 0) equals: '-24'.
  942. self assert: (100000000 printShowingDecimalPlaces: 1) equals: '100000000.0'.
  943. self assert: (0.98 printShowingDecimalPlaces: 5) equals: '0.98000'.
  944. self assert: (0.98 negated printShowingDecimalPlaces: 2) equals: '-0.98'.
  945. self assert: (2.567 printShowingDecimalPlaces: 2) equals: '2.57'.
  946. self assert: (-2.567 printShowingDecimalPlaces: 2) equals: '-2.57'.
  947. self assert: (0 printShowingDecimalPlaces: 2) equals: '0.00'.
  948. !
  949. testRounded
  950. self assert: 3 rounded equals: 3.
  951. self assert: 3.212 rounded equals: 3.
  952. self assert: 3.51 rounded equals: 4
  953. !
  954. testSqrt
  955. self assert: 4 sqrt equals: 2.
  956. self assert: 16 sqrt equals: 4
  957. !
  958. testSquared
  959. self assert: 4 squared equals: 16
  960. !
  961. testTimesRepeat
  962. | i |
  963. i := 0.
  964. 0 timesRepeat: [i := i + 1].
  965. self assert: i equals: 0.
  966. 5 timesRepeat: [i := i + 1].
  967. self assert: i equals: 5
  968. !
  969. testTo
  970. self assert: (1 to: 5) equals: #(1 2 3 4 5)
  971. !
  972. testToBy
  973. self assert: (0 to: 6 by: 2) equals: #(0 2 4 6).
  974. self should: [1 to: 4 by: 0] raise: Error
  975. !
  976. testTruncated
  977. self assert: 3 truncated equals: 3.
  978. self assert: 3.212 truncated equals: 3.
  979. self assert: 3.51 truncated equals: 3
  980. ! !
  981. Object subclass: #ObjectMock
  982. instanceVariableNames: 'foo bar'
  983. package: 'Kernel-Tests'!
  984. !ObjectMock commentStamp!
  985. ObjectMock is there only to perform tests on classes.!
  986. !ObjectMock methodsFor: 'not yet classified'!
  987. foo
  988. ^foo
  989. !
  990. foo: anObject
  991. foo := anObject
  992. ! !
  993. TestCase subclass: #ObjectTest
  994. instanceVariableNames: ''
  995. package: 'Kernel-Tests'!
  996. !ObjectTest methodsFor: 'tests'!
  997. notDefined
  998. <return undefined;>
  999. !
  1000. testBasicAccess
  1001. | o |
  1002. o := Object new.
  1003. o basicAt: 'a' put: 1.
  1004. self assert: (o basicAt: 'a') equals: 1.
  1005. self assert: (o basicAt: 'b') equals: nil
  1006. !
  1007. testBasicPerform
  1008. | o |
  1009. o := Object new.
  1010. o basicAt: 'func' put: ['hello'].
  1011. o basicAt: 'func2' put: [:a | a + 1].
  1012. self assert: (o basicPerform: 'func') equals: 'hello'.
  1013. self assert: (o basicPerform: 'func2' withArguments: #(3)) equals: 4
  1014. !
  1015. testDNU
  1016. self should: [Object new foo] raise: MessageNotUnderstood
  1017. !
  1018. testEquality
  1019. | o |
  1020. o := Object new.
  1021. self deny: o = Object new.
  1022. self assert: (o = o).
  1023. self assert: (o yourself = o).
  1024. self assert: (o = o yourself)
  1025. !
  1026. testHalt
  1027. self should: [Object new halt] raise: Error
  1028. !
  1029. testIdentity
  1030. | o |
  1031. o := Object new.
  1032. self deny: o == Object new.
  1033. self assert: o == o.
  1034. self assert: o yourself == o.
  1035. self assert: o == o yourself
  1036. !
  1037. testIfNil
  1038. self deny: Object new isNil.
  1039. self deny: (Object new ifNil: [true]) = true.
  1040. self assert: (Object new ifNotNil: [true]) equals: true.
  1041. self assert: (Object new ifNil: [false] ifNotNil: [true]) equals: true.
  1042. self assert: (Object new ifNotNil: [true] ifNil: [false]) equals: true
  1043. !
  1044. testInstVars
  1045. | o |
  1046. o := ObjectMock new.
  1047. self assert: (o instVarAt: #foo) equals: nil.
  1048. o instVarAt: #foo put: 1.
  1049. self assert: (o instVarAt: #foo) equals: 1.
  1050. self assert: (o instVarAt: 'foo') equals: 1
  1051. !
  1052. testNilUndefined
  1053. "nil in Smalltalk is the undefined object in JS"
  1054. self assert: self notDefined equals: nil
  1055. !
  1056. testYourself
  1057. | o |
  1058. o := ObjectMock new.
  1059. self assert: o yourself == o
  1060. !
  1061. testidentityHash
  1062. | o1 o2 |
  1063. o1 := Object new.
  1064. o2 := Object new.
  1065. self assert: o1 identityHash == o1 identityHash.
  1066. self deny: o1 identityHash == o2 identityHash
  1067. ! !
  1068. TestCase subclass: #PackageTest
  1069. instanceVariableNames: 'zorkPackage grulPackage backUpCommitPathJs backUpCommitPathSt'
  1070. package: 'Kernel-Tests'!
  1071. !PackageTest methodsFor: 'running'!
  1072. setUp
  1073. backUpCommitPathJs := Package defaultCommitPathJs.
  1074. backUpCommitPathSt := Package defaultCommitPathSt.
  1075. Package resetCommitPaths.
  1076. zorkPackage := Package new name: 'Zork'.
  1077. grulPackage := Package new
  1078. name: 'Grul';
  1079. commitPathJs: 'server/grul/js';
  1080. commitPathSt: 'grul/st';
  1081. yourself
  1082. !
  1083. tearDown
  1084. Package
  1085. defaultCommitPathJs: backUpCommitPathJs;
  1086. defaultCommitPathSt: backUpCommitPathSt
  1087. ! !
  1088. !PackageTest methodsFor: 'tests'!
  1089. testGrulCommitPathJsShouldBeServerGrulJs
  1090. self assert: grulPackage commitPathJs equals: 'server/grul/js'
  1091. !
  1092. testGrulCommitPathStShouldBeGrulSt
  1093. self assert: grulPackage commitPathSt equals: 'grul/st'
  1094. !
  1095. testZorkCommitPathJsShouldBeJs
  1096. self assert: zorkPackage commitPathJs equals: 'js'
  1097. !
  1098. testZorkCommitPathStShouldBeSt
  1099. self assert: zorkPackage commitPathSt equals: 'st'
  1100. ! !
  1101. PackageTest subclass: #PackageWithDefaultCommitPathChangedTest
  1102. instanceVariableNames: ''
  1103. package: 'Kernel-Tests'!
  1104. !PackageWithDefaultCommitPathChangedTest methodsFor: 'running'!
  1105. setUp
  1106. super setUp.
  1107. Package
  1108. defaultCommitPathJs: 'javascripts/';
  1109. defaultCommitPathSt: 'smalltalk/'.
  1110. ! !
  1111. !PackageWithDefaultCommitPathChangedTest methodsFor: 'tests'!
  1112. testGrulCommitPathJsShouldBeServerGrulJs
  1113. self assert: grulPackage commitPathJs equals: 'server/grul/js'
  1114. !
  1115. testGrulCommitPathStShouldBeGrulSt
  1116. self assert: grulPackage commitPathSt equals: 'grul/st'
  1117. !
  1118. testZorkCommitPathJsShouldBeJavascript
  1119. self assert: zorkPackage commitPathJs equals: 'javascripts/'
  1120. !
  1121. testZorkCommitPathStShouldBeSmalltalk
  1122. self assert: zorkPackage commitPathSt equals: 'smalltalk/'
  1123. ! !
  1124. !PackageWithDefaultCommitPathChangedTest class methodsFor: 'accessing'!
  1125. shouldInheritSelectors
  1126. ^ false
  1127. ! !
  1128. TestCase subclass: #PointTest
  1129. instanceVariableNames: ''
  1130. package: 'Kernel-Tests'!
  1131. !PointTest methodsFor: 'tests'!
  1132. testAccessing
  1133. self assert: (Point x: 3 y: 4) x equals: 3.
  1134. self assert: (Point x: 3 y: 4) y equals: 4.
  1135. self assert: (Point new x: 3) x equals: 3.
  1136. self assert: (Point new y: 4) y equals: 4
  1137. !
  1138. testArithmetic
  1139. self assert: 3@4 * (3@4 ) equals: (Point x: 9 y: 16).
  1140. self assert: 3@4 + (3@4 ) equals: (Point x: 6 y: 8).
  1141. self assert: 3@4 - (3@4 ) equals: (Point x: 0 y: 0).
  1142. self assert: 6@8 / (3@4 ) equals: (Point x: 2 y: 2)
  1143. !
  1144. testAt
  1145. self assert: 3@4 equals: (Point x: 3 y: 4)
  1146. !
  1147. testEgality
  1148. self assert: (3@4 = (3@4)).
  1149. self deny: 3@5 = (3@6)
  1150. !
  1151. testTranslateBy
  1152. self assert: (3@3 translateBy: 0@1) equals: 3@4.
  1153. self assert: (3@3 translateBy: 0@1 negated) equals: 3@2.
  1154. self assert: (3@3 translateBy: 2@3) equals: 5@6.
  1155. self assert: (3@3 translateBy: 3 negated @0) equals: 0@3.
  1156. ! !
  1157. TestCase subclass: #RandomTest
  1158. instanceVariableNames: ''
  1159. package: 'Kernel-Tests'!
  1160. !RandomTest methodsFor: 'tests'!
  1161. textNext
  1162. 10000 timesRepeat: [
  1163. | current next |
  1164. next := Random new next.
  1165. self assert: (next >= 0).
  1166. self assert: (next < 1).
  1167. self deny: current = next.
  1168. next = current]
  1169. ! !
  1170. TestCase subclass: #SetTest
  1171. instanceVariableNames: ''
  1172. package: 'Kernel-Tests'!
  1173. !SetTest methodsFor: 'tests'!
  1174. testAddRemove
  1175. | set |
  1176. set := Set new.
  1177. self assert: set isEmpty.
  1178. set add: 3.
  1179. self assert: (set includes: 3).
  1180. set add: 5.
  1181. self assert: (set includes: 5).
  1182. set remove: 3.
  1183. self deny: (set includes: 3)
  1184. !
  1185. testAt
  1186. self should: [Set new at: 1 put: 2] raise: Error
  1187. !
  1188. testCollect
  1189. self assert: (#(5 6 8) asSet collect: [ :x | x \\ 3 ]) equals: #(0 2) asSet
  1190. !
  1191. testComparing
  1192. self assert: #(0 2) asSet equals: #(0 2) asSet.
  1193. self assert: #(2 0) asSet equals: #(0 2) asSet.
  1194. self deny: #(0 2 3) asSet = #(0 2) asSet.
  1195. self deny: #(1 2) asSet = #(0 2) asSet
  1196. !
  1197. testPrintString
  1198. | set |
  1199. set := Set new.
  1200. self assert: set printString equals: 'a Set ()'.
  1201. set add: 1; add: 3.
  1202. self assert: set printString equals: 'a Set (1 3)'.
  1203. set add: 'foo'.
  1204. self assert: set printString equals: 'a Set (1 3 ''foo'')'.
  1205. set remove: 1; remove: 3.
  1206. self assert: set printString equals: 'a Set (''foo'')'.
  1207. set add: 3.
  1208. self assert: set printString equals: 'a Set (''foo'' 3)'.
  1209. set add: 3.
  1210. self assert: set printString equals: 'a Set (''foo'' 3)'
  1211. !
  1212. testSize
  1213. self assert: Set new size equals: 0.
  1214. self assert: (Set withAll: #(1 2 3 4)) size equals: 4.
  1215. self assert: (Set withAll: #(1 1 1 1)) size equals: 1
  1216. !
  1217. testUnicity
  1218. | set |
  1219. set := Set new.
  1220. set add: 21.
  1221. set add: 'hello'.
  1222. set add: 21.
  1223. self assert: set size equals: 2.
  1224. set add: 'hello'.
  1225. self assert: set size equals: 2.
  1226. self assert: set asArray equals: #(21 'hello')
  1227. ! !
  1228. TestCase subclass: #UndefinedTest
  1229. instanceVariableNames: ''
  1230. package: 'Kernel-Tests'!
  1231. !UndefinedTest methodsFor: 'tests'!
  1232. testCopying
  1233. self assert: nil copy equals: nil
  1234. !
  1235. testDeepCopy
  1236. self assert: nil deepCopy = nil
  1237. !
  1238. testIfNil
  1239. self assert: (nil ifNil: [true]) equals: true.
  1240. self deny: (nil ifNotNil: [true]) = true.
  1241. self assert: (nil ifNil: [true] ifNotNil: [false]) equals: true.
  1242. self deny: (nil ifNotNil: [true] ifNil: [false]) = true
  1243. !
  1244. testIsNil
  1245. self assert: nil isNil.
  1246. self deny: nil notNil.
  1247. ! !