Kernel-Tests.st 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  1. Smalltalk createPackage: 'Kernel-Tests'!
  2. TestCase subclass: #AnnouncementSubscriptionTest
  3. instanceVariableNames: ''
  4. package: 'Kernel-Tests'!
  5. !AnnouncementSubscriptionTest methodsFor: 'tests'!
  6. testAddExtensionMethod
  7. | method dirty |
  8. dirty := self class package isDirty.
  9. self class package beClean.
  10. method := self class compile: 'doNothing' protocol: '**not-a-package'.
  11. self deny: self class package isDirty.
  12. self class removeCompiledMethod: method.
  13. dirty ifTrue: [ self class package beDirty ]
  14. !
  15. testHandlesAnnouncement
  16. | subscription announcementClass1 announcementClass2 classBuilder |
  17. classBuilder := ClassBuilder new.
  18. announcementClass1 := classBuilder basicAddSubclassOf: SystemAnnouncement named: 'TestAnnouncement1' instanceVariableNames: #() package: 'Kernel-Tests'.
  19. subscription := AnnouncementSubscription new announcementClass: SystemAnnouncement.
  20. "Test whether the same class triggers the announcement"
  21. self assert: (subscription handlesAnnouncement: SystemAnnouncement) equals: true.
  22. "Test whether a subclass triggers the announcement"
  23. self assert: (subscription handlesAnnouncement: announcementClass1) equals: true.
  24. "Test whether an unrelated class does not trigger the announcement"
  25. self assert: (subscription handlesAnnouncement: Object) equals: false.
  26. classBuilder basicRemoveClass: announcementClass1.
  27. ! !
  28. TestCase subclass: #AnnouncerTest
  29. instanceVariableNames: ''
  30. package: 'Kernel-Tests'!
  31. !AnnouncerTest methodsFor: 'tests'!
  32. testOnDo
  33. | counter announcer |
  34. counter := 0.
  35. announcer := Announcer new.
  36. announcer on: SystemAnnouncement do: [ counter := counter + 1 ].
  37. announcer announce: (SystemAnnouncement new).
  38. self assert: counter equals: 1.
  39. announcer announce: (SystemAnnouncement new).
  40. self assert: counter equals: 2.
  41. !
  42. testOnDoFor
  43. | counter announcer |
  44. counter := 0.
  45. announcer := Announcer new.
  46. announcer on: SystemAnnouncement do: [ counter := counter + 1 ] for: self.
  47. announcer announce: (SystemAnnouncement new).
  48. self assert: counter equals: 1.
  49. announcer announce: (SystemAnnouncement new).
  50. self assert: counter equals: 2.
  51. announcer unsubscribe: self.
  52. announcer announce: (SystemAnnouncement new).
  53. self assert: counter equals: 2.
  54. !
  55. testOnDoOnce
  56. | counter announcer |
  57. counter := 0.
  58. announcer := Announcer new.
  59. announcer on: SystemAnnouncement doOnce: [ counter := counter + 1 ].
  60. announcer announce: (SystemAnnouncement new).
  61. self assert: counter equals: 1.
  62. announcer announce: (SystemAnnouncement new).
  63. self assert: counter equals: 1.
  64. ! !
  65. TestCase subclass: #BlockClosureTest
  66. instanceVariableNames: ''
  67. package: 'Kernel-Tests'!
  68. !BlockClosureTest methodsFor: 'fixture'!
  69. localReturnOnDoCatch
  70. [ ^ 2 ] on: Error do: [].
  71. ^ 3
  72. !
  73. localReturnOnDoMiss
  74. [ ^ 2 ] on: Class do: [].
  75. ^ 3
  76. ! !
  77. !BlockClosureTest methodsFor: 'tests'!
  78. testCanClearInterval
  79. self shouldnt: [ ([ Error new signal ] valueWithInterval: 0) clearInterval ] raise: Error
  80. !
  81. testCanClearTimeout
  82. self shouldnt: [ ([ Error new signal ] valueWithTimeout: 0) clearTimeout ] raise: Error
  83. !
  84. testCompiledSource
  85. self assert: ([ 1+1 ] compiledSource includesSubString: 'function')
  86. !
  87. testCurrySelf
  88. | curriedMethod array |
  89. curriedMethod := [ :selfarg :x | selfarg at: x ] currySelf asCompiledMethod: 'foo:'.
  90. array := #(3 1 4).
  91. ClassBuilder new installMethod: curriedMethod forClass: Array protocol: '**test helper'.
  92. [ self assert: (array foo: 2) equals: 1 ]
  93. ensure: [ Array removeCompiledMethod: curriedMethod ]
  94. !
  95. testEnsure
  96. self assert: ([ 3 ] ensure: [ 4 ]) equals: 3
  97. !
  98. testEnsureRaises
  99. self should: [ [Error new signal ] ensure: [ true ]] raise: Error
  100. !
  101. testExceptionSemantics
  102. "See https://github.com/NicolasPetton/amber/issues/314"
  103. self timeout: 100.
  104. (self async: [
  105. [
  106. self assert: true.
  107. Error signal.
  108. "The following should *not* be run"
  109. self deny: true.
  110. self finished.
  111. ] on: Error do: [ :ex | self finished ]
  112. ]) valueWithTimeout: 0
  113. !
  114. testLocalReturnOnDoCatch
  115. self assert: self localReturnOnDoCatch equals: 2
  116. !
  117. testLocalReturnOnDoMiss
  118. self assert: self localReturnOnDoMiss equals: 2
  119. !
  120. testNewWithValues
  121. <
  122. function TestConstructor(arg1, arg2, arg3) {}
  123. TestConstructor.prototype.name = 'theTestPrototype';
  124. var wrappedConstructor = $recv(TestConstructor);
  125. var result = wrappedConstructor._newWithValues_([1, 2, 3 ]);
  126. self._assert_(result instanceof TestConstructor);
  127. self._assert_equals_(result.name, 'theTestPrototype');
  128. "newWithValues: cannot help if the argument list is wrong, and should warn that a mistake was made."
  129. self._should_raise_(function () {wrappedConstructor._newWithValues_('single argument');}, $globals.Error);
  130. >
  131. !
  132. testNumArgs
  133. self assert: [] numArgs equals: 0.
  134. self assert: [ :a :b | ] numArgs equals: 2
  135. !
  136. testOnDo
  137. self assert: ([ Error new signal ] on: Error do: [ :ex | true ])
  138. !
  139. testValue
  140. self assert: ([ 1+1 ] value) equals: 2.
  141. self assert: ([ :x | x +1 ] value: 2) equals: 3.
  142. self assert: ([ :x :y | x*y ] value: 2 value: 4) equals: 8.
  143. "Arguments are optional in Amber. This isn't ANSI compliant."
  144. self assert: ([ :a :b :c | 1 ] value) equals: 1
  145. !
  146. testValueWithPossibleArguments
  147. self assert: ([ 1 ] valueWithPossibleArguments: #(3 4)) equals: 1.
  148. self assert: ([ :a | a + 4 ] valueWithPossibleArguments: #(3 4)) equals: 7.
  149. self assert: ([ :a :b | a + b ] valueWithPossibleArguments: #(3 4 5)) equals: 7.
  150. !
  151. testWhileFalse
  152. | i |
  153. i := 0.
  154. [ i > 5 ] whileFalse: [ i := i + 1 ].
  155. self assert: i equals: 6.
  156. i := 0.
  157. [ i := i + 1. i > 5 ] whileFalse.
  158. self assert: i equals: 6
  159. !
  160. testWhileTrue
  161. | i |
  162. i := 0.
  163. [ i < 5 ] whileTrue: [ i := i + 1 ].
  164. self assert: i equals: 5.
  165. i := 0.
  166. [ i := i + 1. i < 5 ] whileTrue.
  167. self assert: i equals: 5
  168. ! !
  169. TestCase subclass: #BooleanTest
  170. instanceVariableNames: ''
  171. package: 'Kernel-Tests'!
  172. !BooleanTest methodsFor: 'tests'!
  173. testEquality
  174. "We're on top of JS...just be sure to check the basics!!"
  175. self deny: 0 = false.
  176. self deny: false = 0.
  177. self deny: '' = false.
  178. self deny: false = ''.
  179. self assert: (true = true).
  180. self deny: false = true.
  181. self deny: true = false.
  182. self assert: (false = false).
  183. "JS may do some type coercing after sending a message"
  184. self assert: (true yourself = true).
  185. self assert: (true yourself = true yourself)
  186. !
  187. testIdentity
  188. "We're on top of JS...just be sure to check the basics!!"
  189. self deny: 0 == false.
  190. self deny: false == 0.
  191. self deny: '' == false.
  192. self deny: false == ''.
  193. self assert: true == true.
  194. self deny: false == true.
  195. self deny: true == false.
  196. self assert: false == false.
  197. "JS may do some type coercing after sending a message"
  198. self assert: true yourself == true.
  199. self assert: true yourself == true yourself
  200. !
  201. testIfTrueIfFalse
  202. self assert: (true ifTrue: [ 'alternative block' ]) equals: 'alternative block'.
  203. self assert: (true ifFalse: [ 'alternative block' ]) equals: nil.
  204. self assert: (false ifTrue: [ 'alternative block' ]) equals: nil.
  205. self assert: (false ifFalse: [ 'alternative block' ]) equals: 'alternative block'.
  206. self assert: (false ifTrue: [ 'alternative block' ] ifFalse: [ 'alternative block2' ]) equals: 'alternative block2'.
  207. self assert: (false ifFalse: [ 'alternative block' ] ifTrue: [ 'alternative block2' ]) equals: 'alternative block'.
  208. self assert: (true ifTrue: [ 'alternative block' ] ifFalse: [ 'alternative block2' ]) equals: 'alternative block'.
  209. self assert: (true ifFalse: [ 'alternative block' ] ifTrue: [ 'alternative block2' ]) equals: 'alternative block2'.
  210. !
  211. testIfTrueIfFalseWithBoxing
  212. self assert: (true yourself ifTrue: [ 'alternative block' ]) equals: 'alternative block'.
  213. self assert: (true yourself ifFalse: [ 'alternative block' ]) equals: nil.
  214. self assert: (false yourself ifTrue: [ 'alternative block' ]) equals: nil.
  215. self assert: (false yourself ifFalse: [ 'alternative block' ]) equals: 'alternative block'.
  216. self assert: (false yourself ifTrue: [ 'alternative block' ] ifFalse: [ 'alternative block2' ]) equals: 'alternative block2'.
  217. self assert: (false yourself ifFalse: [ 'alternative block' ] ifTrue: [ 'alternative block2' ]) equals: 'alternative block'.
  218. self assert: (true yourself ifTrue: [ 'alternative block' ] ifFalse: [ 'alternative block2' ]) equals: 'alternative block'.
  219. self assert: (true yourself ifFalse: [ 'alternative block' ] ifTrue: [ 'alternative block2' ]) equals: 'alternative block2'.
  220. !
  221. testLogic
  222. "Trivial logic table"
  223. self assert: (true & true);
  224. deny: (true & false);
  225. deny: (false & true);
  226. deny: (false & false).
  227. self assert: (true | true);
  228. assert: (true | false);
  229. assert: (false | true);
  230. deny: (false | false).
  231. "Checking that expressions work fine too"
  232. self assert: (true & (1 > 0));
  233. deny: ((1 > 0) & false);
  234. deny: ((1 > 0) & (1 > 2)).
  235. self assert: (false | (1 > 0));
  236. assert: ((1 > 0) | false);
  237. assert: ((1 > 0) | (1 > 2))
  238. !
  239. testLogicKeywords
  240. "Trivial logic table"
  241. self
  242. assert: (true and: [ true ]);
  243. deny: (true and: [ false ]);
  244. deny: (false and: [ true ]);
  245. deny: (false and: [ false ]).
  246. self
  247. assert: (true or: [ true ]);
  248. assert: (true or: [ false ]);
  249. assert: (false or: [ true ]);
  250. deny: (false or: [ false ]).
  251. "Checking that expressions work fine too"
  252. self
  253. assert: (true and: [ 1 > 0 ]);
  254. deny: ((1 > 0) and: [ false ]);
  255. deny: ((1 > 0) and: [ 1 > 2 ]).
  256. self
  257. assert: (false or: [ 1 > 0 ]);
  258. assert: ((1 > 0) or: [ false ]);
  259. assert: ((1 > 0) or: [ 1 > 2 ])
  260. !
  261. testNonBooleanError
  262. self should: [ '' ifTrue: [] ifFalse: [] ] raise: NonBooleanReceiver
  263. ! !
  264. TestCase subclass: #ClassBuilderTest
  265. instanceVariableNames: 'builder theClass'
  266. package: 'Kernel-Tests'!
  267. !ClassBuilderTest methodsFor: 'running'!
  268. setUp
  269. builder := ClassBuilder new
  270. !
  271. tearDown
  272. theClass ifNotNil: [ Smalltalk removeClass: theClass. theClass := nil ]
  273. ! !
  274. !ClassBuilderTest methodsFor: 'tests'!
  275. testClassCopy
  276. theClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
  277. self assert: theClass superclass == ObjectMock superclass.
  278. self assert: theClass instanceVariableNames == ObjectMock instanceVariableNames.
  279. self assert: theClass name equals: 'ObjectMock2'.
  280. self assert: theClass package == ObjectMock package.
  281. self assert: theClass methodDictionary keys equals: ObjectMock methodDictionary keys
  282. !
  283. testClassMigration
  284. | instance oldClass |
  285. oldClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
  286. instance := (Smalltalk globals at: 'ObjectMock2') new.
  287. "Change the superclass of ObjectMock2"
  288. ObjectMock subclass: (Smalltalk globals at: 'ObjectMock2')
  289. instanceVariableNames: ''
  290. package: 'Kernel-Tests'.
  291. self deny: oldClass == ObjectMock2.
  292. self assert: ObjectMock2 superclass == ObjectMock.
  293. self assert: ObjectMock2 instanceVariableNames isEmpty.
  294. self assert: ObjectMock2 selectors equals: oldClass selectors.
  295. self assert: ObjectMock2 comment equals: oldClass comment.
  296. self assert: ObjectMock2 package name equals: 'Kernel-Tests'.
  297. self deny: instance class == ObjectMock2.
  298. "Commeting this out. Tests implementation detail."
  299. "self assert: instance class name equals: 'OldObjectMock2'."
  300. self assert: (Smalltalk globals at: instance class name) isNil.
  301. Smalltalk removeClass: ObjectMock2
  302. !
  303. testClassMigrationWithClassInstanceVariables
  304. builder copyClass: ObjectMock named: 'ObjectMock2'.
  305. ObjectMock2 class instanceVariableNames: 'foo bar'.
  306. "Change the superclass of ObjectMock2"
  307. ObjectMock subclass: (Smalltalk globals at: 'ObjectMock2')
  308. instanceVariableNames: ''
  309. package: 'Kernel-Tests'.
  310. self assert: ObjectMock2 class instanceVariableNames equals: #('foo' 'bar').
  311. Smalltalk removeClass: ObjectMock2
  312. !
  313. testClassMigrationWithSubclasses
  314. builder copyClass: ObjectMock named: 'ObjectMock2'.
  315. ObjectMock2 subclass: 'ObjectMock3' instanceVariableNames: '' package: 'Kernel-Tests'.
  316. ObjectMock3 subclass: 'ObjectMock4' instanceVariableNames: '' package: 'Kernel-Tests'.
  317. "Change the superclass of ObjectMock2"
  318. ObjectMock subclass: (Smalltalk globals at: 'ObjectMock2')
  319. instanceVariableNames: ''
  320. package: 'Kernel-Tests'.
  321. self assert: (ObjectMock subclasses includes: ObjectMock2).
  322. self assert: (ObjectMock2 subclasses includes: ObjectMock3).
  323. self assert: (ObjectMock3 subclasses includes: ObjectMock4).
  324. ObjectMock allSubclasses do: [ :each | Smalltalk removeClass: each ]
  325. !
  326. testInstanceVariableNames
  327. self assert: (builder instanceVariableNamesFor: ' hello world ') equals: #('hello' 'world')
  328. ! !
  329. TestCase subclass: #CollectionTest
  330. instanceVariableNames: ''
  331. package: 'Kernel-Tests'!
  332. !CollectionTest methodsFor: 'convenience'!
  333. assertSameContents: aCollection as: anotherCollection
  334. self assert: (aCollection size = anotherCollection size).
  335. aCollection do: [ :each |
  336. self assert: ((aCollection occurrencesOf: each) = (anotherCollection occurrencesOf: each)) ]
  337. ! !
  338. !CollectionTest methodsFor: 'fixture'!
  339. collection
  340. "Answers pre-filled collection of type tested."
  341. self subclassResponsibility
  342. !
  343. collectionClass
  344. "Answers class of collection type tested"
  345. ^ self class collectionClass
  346. !
  347. collectionOfPrintStrings
  348. "Answers self collection but with values
  349. changed to their printStrings"
  350. self subclassResponsibility
  351. !
  352. collectionSize
  353. "Answers size of self collection."
  354. self subclassResponsibility
  355. !
  356. collectionWithDuplicates
  357. "Answers pre-filled collection of type tested,
  358. with exactly five distinct elements,
  359. some of them appearing multiple times, if possible."
  360. self subclassResponsibility
  361. !
  362. collectionWithNewValue
  363. "Answers a collection which shows how
  364. self collection would look after adding
  365. self sampleNewValue"
  366. self subclassResponsibility
  367. !
  368. sampleNewValue
  369. "Answers a value that is not yet there
  370. and can be put into a tested collection"
  371. ^ 'N'
  372. !
  373. sampleNewValueAsCollection
  374. "Answers self sampleNewValue
  375. wrapped in single element collection
  376. of tested type"
  377. ^ self collectionClass with: self sampleNewValue
  378. ! !
  379. !CollectionTest methodsFor: 'testing'!
  380. isCollectionReadOnly
  381. ^ false
  382. ! !
  383. !CollectionTest methodsFor: 'tests'!
  384. testAddAll
  385. self assert: (self collection addAll: self collectionClass new; yourself) equals: self collection.
  386. self assert: (self collectionClass new addAll: self collection; yourself) equals: self collection.
  387. self assert: (self collectionClass new addAll: self collectionClass new; yourself) equals: self collectionClass new.
  388. self assert: (self collection addAll: self sampleNewValueAsCollection; yourself) equals: self collectionWithNewValue.
  389. self assertSameContents: (self sampleNewValueAsCollection addAll: self collection; yourself) as: self collectionWithNewValue
  390. !
  391. testAllSatisfy
  392. | collection anyOne |
  393. collection := self collection.
  394. anyOne := collection anyOne.
  395. self assert: (collection allSatisfy: [ :each | collection includes: each ]).
  396. self deny: (collection allSatisfy: [ :each | each ~= anyOne ])
  397. !
  398. testAnyOne
  399. self should: [ self collectionClass new anyOne ] raise: Error.
  400. self assert: (self collection includes: self collection anyOne)
  401. !
  402. testAnySatisfy
  403. | anyOne |
  404. anyOne := self collection anyOne.
  405. self assert: (self collection anySatisfy: [ :each | each = anyOne ]).
  406. self deny: (self collection anySatisfy: [ :each | each = Object new ])
  407. !
  408. testAsArray
  409. self
  410. assertSameContents: self collection
  411. as: self collection asArray
  412. !
  413. testAsOrderedCollection
  414. self
  415. assertSameContents: self collection
  416. as: self collection asOrderedCollection
  417. !
  418. testAsSet
  419. | c set |
  420. c := self collectionWithDuplicates.
  421. set := c asSet.
  422. self assert: set size equals: 5.
  423. c do: [ :each |
  424. self assert: (set includes: each) ]
  425. !
  426. testCollect
  427. self assert: (self collection collect: [ :each | each ]) equals: self collection.
  428. self assert: (self collectionWithNewValue collect: [ :each | each ]) equals: self collectionWithNewValue.
  429. self assert: (self collectionClass new collect: [ :each | each printString ]) equals: self collectionClass new.
  430. self assert: ((self collection collect: [ self sampleNewValue ]) detect: [ true ]) equals: self sampleNewValue.
  431. self assert: (self collection collect: [ :each | each printString ]) equals: self collectionOfPrintStrings
  432. !
  433. testComma
  434. self assert: self collection, self collectionClass new equals: self collection.
  435. self assert: self collectionClass new, self collection equals: self collection.
  436. self assert: self collectionClass new, self collectionClass new equals: self collectionClass new.
  437. self assert: self collection, self sampleNewValueAsCollection equals: self collectionWithNewValue.
  438. self assertSameContents: self sampleNewValueAsCollection, self collection as: self collectionWithNewValue
  439. !
  440. testDetect
  441. self
  442. shouldnt: [ self collection detect: [ true ] ]
  443. raise: Error.
  444. self
  445. should: [ self collection detect: [ false ] ]
  446. raise: Error.
  447. self assert: (self sampleNewValueAsCollection detect: [ true ]) equals: self sampleNewValue.
  448. self assert: (self collectionWithNewValue detect: [ :each | each = self sampleNewValue ]) equals: self sampleNewValue.
  449. self
  450. should: [ self collection detect: [ :each | each = self sampleNewValue ] ]
  451. raise: Error
  452. !
  453. testDetectIfNone
  454. | sentinel |
  455. sentinel := Object new.
  456. self assert: (self collection detect: [ true ] ifNone: [ sentinel ]) ~= sentinel.
  457. self assert: (self collection detect: [ false ] ifNone: [ sentinel ]) equals: sentinel.
  458. self assert: (self sampleNewValueAsCollection detect: [ true ] ifNone: [ sentinel ]) equals: self sampleNewValue.
  459. self assert: (self collectionWithNewValue detect: [ :each | each = self sampleNewValue ] ifNone: [ sentinel ]) equals: self sampleNewValue.
  460. self assert: (self collection detect: [ :each | each = self sampleNewValue ] ifNone: [ sentinel ]) equals: sentinel
  461. !
  462. testDo
  463. | newCollection |
  464. newCollection := OrderedCollection new.
  465. self collection do: [ :each |
  466. newCollection add: each ].
  467. self
  468. assertSameContents: self collection
  469. as: newCollection.
  470. newCollection := OrderedCollection new.
  471. self collectionWithDuplicates do: [ :each |
  472. newCollection add: each ].
  473. self
  474. assertSameContents: self collectionWithDuplicates
  475. as: newCollection
  476. !
  477. testIfEmptyFamily
  478. self assert: (self collectionClass new ifEmpty: [ 42 ]) equals: 42.
  479. self assert: (self collection ifEmpty: [ 42 ]) equals: self collection.
  480. self assert: (self collectionClass new ifNotEmpty: [ 42 ]) equals: self collectionClass new.
  481. self assert: (self collection ifNotEmpty: [ 42 ]) equals: 42.
  482. self assert: (self collection ifNotEmpty: [ :col | col ]) equals: self collection.
  483. self assert: (self collectionClass new ifEmpty: [ 42 ] ifNotEmpty: [ 999 ]) equals: 42.
  484. self assert: (self collection ifEmpty: [ 42 ] ifNotEmpty: [ 999 ]) equals: 999.
  485. self assert: (self collection ifEmpty: [ 42 ] ifNotEmpty: [ :col | col ]) equals: self collection.
  486. self assert: (self collectionClass new ifNotEmpty: [ 42 ] ifEmpty: [ 999 ]) equals: 999.
  487. self assert: (self collection ifNotEmpty: [ 42 ] ifEmpty: [ 999 ]) equals: 42.
  488. self assert: (self collection ifNotEmpty: [ :col | col ] ifEmpty: [ 999 ]) equals: self collection.
  489. !
  490. testIsEmpty
  491. self assert: self collectionClass new isEmpty.
  492. self deny: self collection isEmpty
  493. !
  494. testNoneSatisfy
  495. | anyOne |
  496. anyOne := self collection anyOne.
  497. self deny: (self collection noneSatisfy: [ :each | each = anyOne ]).
  498. self assert: (self collection noneSatisfy: [ :each | each = Object new ])
  499. !
  500. testRemoveAll
  501. self assert: (self collection removeAll; yourself) equals: self collectionClass new
  502. !
  503. testSelect
  504. self assert: (self collection select: [ false ]) equals: self collectionClass new.
  505. self assert: (self collection select: [ true ]) equals: self collection.
  506. self assert: (self collectionWithNewValue select: [ :each | each = self sampleNewValue ]) equals: self sampleNewValueAsCollection.
  507. self assert: (self collectionWithNewValue select: [ :each | each ~= self sampleNewValue ]) equals: self collection.
  508. self assert: (self collection select: [ :each | each = self sampleNewValue ]) equals: self collectionClass new.
  509. self assert: (self collectionWithNewValue select: [ :each | each ~= self sampleNewValue ]) equals: self collection
  510. !
  511. testSize
  512. self assert: self collectionClass new size equals: 0.
  513. self assert: self sampleNewValueAsCollection size equals: 1.
  514. self assert: self collection size equals: self collectionSize
  515. ! !
  516. !CollectionTest class methodsFor: 'fixture'!
  517. collectionClass
  518. "Answers class of collection type tested,
  519. or nil if test is abstract"
  520. ^ nil
  521. ! !
  522. !CollectionTest class methodsFor: 'testing'!
  523. isAbstract
  524. ^ self collectionClass isNil
  525. ! !
  526. CollectionTest subclass: #IndexableCollectionTest
  527. instanceVariableNames: ''
  528. package: 'Kernel-Tests'!
  529. !IndexableCollectionTest methodsFor: 'fixture'!
  530. collectionWithNewValue
  531. "Answers a collection which shows how
  532. self collection would look after adding
  533. self sampleNewValue at self sampleNewIndex"
  534. self subclassResponsibility
  535. !
  536. sampleNewIndex
  537. "Answers a value that can be used as index in at:put: or at:ifAbsentPut:"
  538. self subclassResponsibility
  539. !
  540. sampleNonIndexesDo: aBlock
  541. "Executes block a few times,
  542. each time passing value that is known
  543. not to be an index, as the first parameter"
  544. self subclassResponsibility
  545. !
  546. samplesDo: aBlock
  547. "Executes block a few times,
  548. each time passing known index and value stored
  549. under that index as the parameters"
  550. self subclassResponsibility
  551. ! !
  552. !IndexableCollectionTest methodsFor: 'tests'!
  553. testAt
  554. self nonIndexesDo: [ :each |
  555. self should: [ self collection at: each ] raise: Error ].
  556. self samplesDo: [ :index :value |
  557. self assert: (self collection at: index) equals: value ]
  558. !
  559. testAtIfAbsent
  560. self nonIndexesDo: [ :each |
  561. self assert: (self collection at: each ifAbsent: [ self sampleNewValue ]) equals: self sampleNewValue ].
  562. self samplesDo: [ :index :value |
  563. self assert: (self collection at: index ifAbsent: [ self sampleNewValue ]) equals: value ].
  564. !
  565. testAtIfAbsentPut
  566. | newCollection |
  567. newCollection := self collection.
  568. self samplesDo: [ :index :value |
  569. self assert: (newCollection at: index ifAbsentPut: [ self sampleNewValue ]) equals: value ].
  570. self assert: newCollection equals: self collection.
  571. self assert: (newCollection at: self sampleNewIndex ifAbsentPut: [ self sampleNewValue ]) equals: self sampleNewValue.
  572. self assert: newCollection equals: self collectionWithNewValue
  573. !
  574. testAtIfPresent
  575. | visited sentinel |
  576. sentinel := Object new.
  577. self nonIndexesDo: [ :each |
  578. visited := nil.
  579. self assert: (self collection at: each ifPresent: [ :value1 | visited := value1. sentinel ]) equals: nil.
  580. self assert: visited isNil ].
  581. self samplesDo: [ :index :value |
  582. visited := nil.
  583. self assert: (self collection at: index ifPresent: [ :value2 | visited := value2. sentinel ]) equals: sentinel.
  584. self assert: visited equals: (self collection at: index) ]
  585. !
  586. testAtIfPresentIfAbsent
  587. | visited sentinel |
  588. sentinel := Object new.
  589. self nonIndexesDo: [ :each |
  590. visited := nil.
  591. self assert: (self collection at: each ifPresent: [ :value1 | visited := value1. sentinel ] ifAbsent: [ self sampleNewValue ] ) equals: self sampleNewValue.
  592. self assert: visited isNil ].
  593. self samplesDo: [ :index :value |
  594. visited := nil.
  595. self assert: (self collection at: index ifPresent: [ :value2 | visited := value2. sentinel ] ifAbsent: [ self sampleNewValue ]) equals: sentinel.
  596. self assert: visited equals: (self collection at: index) ]
  597. !
  598. testAtPut
  599. | newCollection |
  600. newCollection := self collection.
  601. self samplesDo: [ :index :value |
  602. newCollection at: index put: value ].
  603. self assert: newCollection equals: self collection.
  604. newCollection at: self sampleNewIndex put: self sampleNewValue.
  605. self assert: newCollection equals: self collectionWithNewValue
  606. !
  607. testEquality
  608. self assert: self collectionClass new equals: self collectionClass new.
  609. self assert: self collection equals: self collection.
  610. self assert: self collectionWithNewValue equals: self collectionWithNewValue.
  611. self deny: self collectionClass new = self collection.
  612. self deny: self collection = self collectionClass new
  613. !
  614. testIndexOf
  615. self should: [ self collection indexOf: self sampleNewValue ] raise: Error.
  616. self samplesDo: [ :index :value |
  617. self assert: (self collection indexOf: value) equals: index ]
  618. !
  619. testIndexOfWithNull
  620. | jsNull |
  621. jsNull := JSON parse: 'null'.
  622. self samplesDo: [ :index :value |
  623. self assert: (self collection at: index put: jsNull; indexOf: jsNull) equals: index ]
  624. !
  625. testWithIndexDo
  626. | collection |
  627. collection := self collection.
  628. self collection withIndexDo: [ :each :index |
  629. self assert: (collection at: index) equals: each ]
  630. ! !
  631. IndexableCollectionTest subclass: #AssociativeCollectionTest
  632. instanceVariableNames: ''
  633. package: 'Kernel-Tests'!
  634. !AssociativeCollectionTest methodsFor: 'fixture'!
  635. collectionKeys
  636. self subclassResponsibility
  637. !
  638. collectionValues
  639. self subclassResponsibility
  640. !
  641. nonIndexesDo: aBlock
  642. aBlock value: 5.
  643. aBlock value: 'z'
  644. !
  645. sampleNewIndex
  646. ^ 'new'
  647. !
  648. samplesDo: aBlock
  649. aBlock value: 'a' value: 2
  650. ! !
  651. !AssociativeCollectionTest methodsFor: 'tests'!
  652. testAddAll
  653. super testAddAll.
  654. self assert: (self collection addAll: self collection; yourself) equals: self collection.
  655. self assert: (self collection addAll: self collectionWithNewValue; yourself) equals: self collectionWithNewValue.
  656. self assert: (self collectionWithNewValue addAll: self collection; yourself) equals: self collectionWithNewValue
  657. !
  658. testAsDictionary
  659. self assert: ( self collectionClass new asDictionary isMemberOf: Dictionary ).
  660. !
  661. testAsHashedCollection
  662. self assert: ( self collectionClass new asHashedCollection isMemberOf: HashedCollection ).
  663. !
  664. testComma
  665. super testComma.
  666. self assert: self collection, self collection equals: self collection.
  667. self assert: self collection, self collectionWithNewValue equals: self collectionWithNewValue.
  668. self assert: self collectionWithNewValue, self collection equals: self collectionWithNewValue
  669. !
  670. testFrom
  671. "Accept a collection of associations."
  672. | associations |
  673. associations := { 'a' -> 1. 'b' -> 2 }.
  674. self assertSameContents: ( self class collectionClass from: associations ) as: #{ 'a' -> 1. 'b' -> 2 }.
  675. !
  676. testKeys
  677. self assert:self collectionClass new keys isEmpty.
  678. self assertSameContents:self collection keys as: self collectionKeys.
  679. self assertSameContents:self collectionWithNewValue keys as: self collectionKeys, { self sampleNewIndex }
  680. !
  681. testNewFromPairs
  682. "Accept an array in which all odd indexes are keys and evens are values."
  683. | flattenedAssociations |
  684. flattenedAssociations := { 'a'. 1. 'b'. 2 }.
  685. self assertSameContents: ( self class collectionClass newFromPairs: flattenedAssociations ) as: #{ 'a' -> 1. 'b' -> 2 }.
  686. !
  687. testPrintString
  688. self
  689. assert: (self collectionClass new
  690. at:'firstname' put: 'James';
  691. at:'lastname' put: 'Bond';
  692. printString)
  693. equals: 'a ', self collectionClass name, ' (''firstname'' -> ''James'' , ''lastname'' -> ''Bond'')'
  694. !
  695. testRemoveKey
  696. self nonIndexesDo: [ :each |
  697. | collection |
  698. collection := self collection.
  699. self should: [ collection removeKey: each ] raise: Error.
  700. self assert: collection equals: self collection ].
  701. self samplesDo: [ :index :value |
  702. | collection |
  703. collection := self collection.
  704. self assert: (collection removeKey: index) equals: value.
  705. self deny: collection = self collection ].
  706. self
  707. assert: (self collectionWithNewValue removeKey: self sampleNewIndex; yourself)
  708. equals: self collection
  709. !
  710. testRemoveKeyIfAbsent
  711. self nonIndexesDo: [ :each |
  712. | collection |
  713. collection := self collection.
  714. self assert: (collection removeKey: each ifAbsent: [ self sampleNewValue ]) equals: self sampleNewValue.
  715. self assert: collection equals: self collection ].
  716. self samplesDo: [ :index :value |
  717. | collection |
  718. collection := self collection.
  719. self assert: (collection removeKey: index ifAbsent: [ self sampleNewValue ]) equals: value.
  720. self deny: collection = self collection ].
  721. self
  722. assert: (self collectionWithNewValue removeKey: self sampleNewIndex ifAbsent: [ self assert: false ]; yourself)
  723. equals: self collection
  724. !
  725. testValues
  726. self assert:self collectionClass new values isEmpty.
  727. self assertSameContents:self collection values as: self collectionValues.
  728. self assertSameContents:self collectionWithNewValue values as: self collectionValues, { self sampleNewValue }
  729. ! !
  730. AssociativeCollectionTest subclass: #DictionaryTest
  731. instanceVariableNames: ''
  732. package: 'Kernel-Tests'!
  733. !DictionaryTest methodsFor: 'fixture'!
  734. collection
  735. ^ Dictionary new
  736. at: 1 put: 1;
  737. at: 'a' put: 2;
  738. at: true put: 3;
  739. at: 1@3 put: -4;
  740. yourself
  741. !
  742. collectionKeys
  743. ^ {1. 'a'. true. 1@3}
  744. !
  745. collectionOfPrintStrings
  746. ^ Dictionary new
  747. at: 1 put: '1';
  748. at: 'a' put: '2';
  749. at: true put: '3';
  750. at: 1@3 put: '-4';
  751. yourself
  752. !
  753. collectionSize
  754. ^ 4
  755. !
  756. collectionValues
  757. ^ {1. 2. 3. -4}
  758. !
  759. collectionWithDuplicates
  760. ^ Dictionary new
  761. at: 1 put: 1;
  762. at: 'a' put: 2;
  763. at: true put: 3;
  764. at: 4 put: -4;
  765. at: 'b' put: 1;
  766. at: 3 put: 3;
  767. at: false put: 12;
  768. yourself
  769. !
  770. collectionWithNewValue
  771. ^ Dictionary new
  772. at: 1 put: 1;
  773. at: 'a' put: 2;
  774. at: true put: 3;
  775. at: 1@3 put: -4;
  776. at: 'new' put: 'N';
  777. yourself
  778. !
  779. sampleNewValueAsCollection
  780. ^ Dictionary new
  781. at: 'new' put: 'N';
  782. yourself
  783. !
  784. samplesDo: aBlock
  785. super samplesDo: aBlock.
  786. aBlock value: true value: 3.
  787. aBlock value: 1@3 value: -4
  788. ! !
  789. !DictionaryTest methodsFor: 'tests'!
  790. testAccessing
  791. | d |
  792. d := Dictionary new.
  793. d at: 'hello' put: 'world'.
  794. self assert: (d at: 'hello') equals: 'world'.
  795. self assert: (d at: 'hello' ifAbsent: [ nil ]) equals: 'world'.
  796. self deny: (d at: 'foo' ifAbsent: [ nil ]) = 'world'.
  797. self assert: (d includesKey: 'hello').
  798. self deny: (d includesKey: 'foo').
  799. d at: 1 put: 2.
  800. self assert: (d at: 1) equals: 2.
  801. d at: 1@3 put: 3.
  802. self assert: (d at: 1@3) equals: 3.
  803. self assert: (d includesKey: 1@3).
  804. self deny: (d includesKey: 3@1)
  805. !
  806. testDynamicDictionaries
  807. self assert: #{'hello' -> 1} asDictionary equals: (Dictionary with: 'hello' -> 1)
  808. ! !
  809. !DictionaryTest class methodsFor: 'fixture'!
  810. collectionClass
  811. ^ Dictionary
  812. ! !
  813. AssociativeCollectionTest subclass: #HashedCollectionTest
  814. instanceVariableNames: ''
  815. package: 'Kernel-Tests'!
  816. !HashedCollectionTest methodsFor: 'fixture'!
  817. collection
  818. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4 }
  819. !
  820. collectionKeys
  821. ^ { 'b'. 'a'. 'c'. 'd' }
  822. !
  823. collectionOfPrintStrings
  824. ^ #{ 'b' -> '1'. 'a' -> '2'. 'c' -> '3'. 'd' -> '-4' }
  825. !
  826. collectionSize
  827. ^ 4
  828. !
  829. collectionValues
  830. ^ { 1. 2. 3. -4 }
  831. !
  832. collectionWithDuplicates
  833. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4. 'e' -> 1. 'f' -> 2. 'g' -> 10 }
  834. !
  835. collectionWithNewValue
  836. ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4. 'new' -> 'N' }
  837. !
  838. sampleNewValueAsCollection
  839. ^ #{ 'new' -> 'N' }
  840. ! !
  841. !HashedCollectionTest methodsFor: 'tests'!
  842. testDynamicDictionaries
  843. self assert: #{'hello' -> 1} asHashedCollection equals: (HashedCollection with: 'hello' -> 1)
  844. ! !
  845. !HashedCollectionTest class methodsFor: 'fixture'!
  846. collectionClass
  847. ^ HashedCollection
  848. ! !
  849. IndexableCollectionTest subclass: #SequenceableCollectionTest
  850. instanceVariableNames: ''
  851. package: 'Kernel-Tests'!
  852. !SequenceableCollectionTest methodsFor: 'fixture'!
  853. collectionFirst
  854. self subclassResponsibility
  855. !
  856. collectionFirstTwo
  857. self subclassResponsibility
  858. !
  859. collectionLast
  860. self subclassResponsibility
  861. !
  862. collectionLastTwo
  863. self subclassResponsibility
  864. !
  865. nonIndexesDo: aBlock
  866. aBlock value: 0.
  867. aBlock value: self collectionSize + 1.
  868. aBlock value: 'z'
  869. !
  870. samplesDo: aBlock
  871. aBlock value: 1 value: self collectionFirst.
  872. aBlock value: self collectionSize value: self collectionLast
  873. ! !
  874. !SequenceableCollectionTest methodsFor: 'tests'!
  875. testBeginsWith
  876. self assert: (self collection beginsWith: self collectionClass new).
  877. self assert: (self collection beginsWith: self collection).
  878. self assert: (self collection beginsWith: self collectionFirstTwo).
  879. self deny: (self collection beginsWith: self collectionLastTwo)
  880. !
  881. testEndsWith
  882. self assert: (self collection endsWith: self collectionClass new).
  883. self assert: (self collection endsWith: self collection).
  884. self assert: (self collection endsWith: self collectionLastTwo).
  885. self deny: (self collection endsWith: self collectionFirstTwo)
  886. !
  887. testFirst
  888. self assert: self collection first equals: self collectionFirst
  889. !
  890. testFirstN
  891. self
  892. assert: (self collection first: 2)
  893. equals: self collectionFirstTwo.
  894. self
  895. assert: (self collection first: 0)
  896. equals: self collectionClass new.
  897. self
  898. assert: (self collection first: self collectionSize)
  899. equals: self collection.
  900. self should: [ self collection first: 33 ] raise: Error
  901. !
  902. testFourth
  903. self assert: (self collection fourth) equals: (self collection at: 4)
  904. !
  905. testIndexOfStartingAt
  906. | jsNull |
  907. jsNull := JSON parse: 'null'.
  908. self samplesDo: [ :index :value |
  909. self assert: (self collection indexOf: value startingAt: 1) equals: index.
  910. self assert: (self collection indexOf: value startingAt: index) equals: index.
  911. self assert: (self collection indexOf: value startingAt: index+1) equals: 0 ]
  912. !
  913. testIndexOfStartingAtWithNull
  914. | jsNull |
  915. jsNull := JSON parse: 'null'.
  916. self samplesDo: [ :index :value | | collection |
  917. collection := self collection.
  918. collection at: index put: jsNull.
  919. self assert: (collection indexOf: jsNull startingAt: 1) equals: index.
  920. self assert: (collection indexOf: jsNull startingAt: index) equals: index.
  921. self assert: (collection indexOf: jsNull startingAt: index+1) equals: 0 ]
  922. !
  923. testLast
  924. self assert: self collection last equals: self collectionLast
  925. !
  926. testLastN
  927. self
  928. assert: (self collection last: 2)
  929. equals: self collectionLastTwo.
  930. self
  931. assert: (self collection last: 0)
  932. equals: self collectionClass new.
  933. self
  934. assert: (self collection last: self collectionSize)
  935. equals: self collection.
  936. self should: [ self collection last: 33 ] raise: Error
  937. !
  938. testSecond
  939. self assert: (self collection second) equals: (self collection at: 2)
  940. !
  941. testThird
  942. self assert: (self collection third) equals: (self collection at: 3)
  943. ! !
  944. SequenceableCollectionTest subclass: #ArrayTest
  945. instanceVariableNames: ''
  946. package: 'Kernel-Tests'!
  947. !ArrayTest methodsFor: 'fixture'!
  948. collection
  949. ^ #(1 2 3 -4)
  950. !
  951. collectionFirst
  952. ^ 1
  953. !
  954. collectionFirstTwo
  955. ^ #(1 2)
  956. !
  957. collectionLast
  958. ^ -4
  959. !
  960. collectionLastTwo
  961. ^ #(3 -4)
  962. !
  963. collectionOfPrintStrings
  964. ^ #('1' '2' '3' '-4')
  965. !
  966. collectionSize
  967. ^ 4
  968. !
  969. collectionWithDuplicates
  970. ^ #('a' 'b' 'c' 1 2 1 'a')
  971. !
  972. collectionWithNewValue
  973. ^ #(1 2 3 -4 'N')
  974. !
  975. sampleNewIndex
  976. ^ 5
  977. !
  978. samplesDo: aBlock
  979. super samplesDo: aBlock.
  980. aBlock value: 3 value: 3.
  981. ! !
  982. !ArrayTest methodsFor: 'tests'!
  983. testAdd
  984. | array |
  985. array := self collection.
  986. array add: 6.
  987. self assert: array last equals: 6
  988. !
  989. testAddFirst
  990. self assert: (self collection addFirst: 0; yourself) first equals: 0
  991. !
  992. testPrintString
  993. | array |
  994. array := Array new.
  995. self assert: array printString equals: 'an Array ()'.
  996. array add: 1; add: 3.
  997. self assert: array printString equals: 'an Array (1 3)'.
  998. array add: 'foo'.
  999. self assert: array printString equals: 'an Array (1 3 ''foo'')'.
  1000. array remove: 1; remove: 3.
  1001. self assert: array printString equals: 'an Array (''foo'')'.
  1002. array addLast: 3.
  1003. self assert: array printString equals: 'an Array (''foo'' 3)'.
  1004. array addLast: 3.
  1005. self assert: array printString equals: 'an Array (''foo'' 3 3)'.
  1006. !
  1007. testRemove
  1008. | array |
  1009. array := #(1 2 3 4 5).
  1010. array remove: 3.
  1011. self assert: array equals: #(1 2 4 5).
  1012. self should: [ array remove: 3 ] raise: Error
  1013. !
  1014. testRemoveFromTo
  1015. self assert: (#(1 2 3 4) removeFrom: 1 to: 3) equals: #(4).
  1016. self assert: (#(1 2 3 4) removeFrom: 2 to: 3) equals: #(1 4).
  1017. self assert: (#(1 2 3 4) removeFrom: 2 to: 4) equals: #(1)
  1018. !
  1019. testRemoveIndex
  1020. self assert: (#(1 2 3 4) removeIndex: 2) equals: #(1 3 4).
  1021. self assert: (#(1 2 3 4) removeIndex: 1) equals: #(2 3 4).
  1022. self assert: (#('hello') removeIndex: 1) equals: #()
  1023. !
  1024. testRemoveLast
  1025. | array |
  1026. array := #(1 2).
  1027. array removeLast.
  1028. self assert: array last equals: 1
  1029. !
  1030. testReversed
  1031. |array|
  1032. array := #(5 4 3 2 1).
  1033. self assert: (array reversed) equals: #(1 2 3 4 5)
  1034. !
  1035. testSort
  1036. | array |
  1037. array := #(10 1 5).
  1038. array sort.
  1039. self assert: array equals: #(1 5 10)
  1040. ! !
  1041. !ArrayTest class methodsFor: 'fixture'!
  1042. collectionClass
  1043. ^ Array
  1044. ! !
  1045. SequenceableCollectionTest subclass: #StringTest
  1046. instanceVariableNames: ''
  1047. package: 'Kernel-Tests'!
  1048. !StringTest methodsFor: 'fixture'!
  1049. collection
  1050. ^ 'helLo'
  1051. !
  1052. collectionFirst
  1053. ^ 'h'
  1054. !
  1055. collectionFirstTwo
  1056. ^ 'he'
  1057. !
  1058. collectionLast
  1059. ^ 'o'
  1060. !
  1061. collectionLastTwo
  1062. ^ 'Lo'
  1063. !
  1064. collectionOfPrintStrings
  1065. ^ '''h''''e''''l''''L''''o'''
  1066. !
  1067. collectionSize
  1068. ^ 5
  1069. !
  1070. collectionWithDuplicates
  1071. ^ 'abbaerte'
  1072. !
  1073. collectionWithNewValue
  1074. ^ 'helLoN'
  1075. !
  1076. sampleNewValueAsCollection
  1077. ^ 'N'
  1078. !
  1079. samplesDo: aBlock
  1080. super samplesDo: aBlock.
  1081. aBlock value: 3 value: 'l'
  1082. ! !
  1083. !StringTest methodsFor: 'tests'!
  1084. testAddAll
  1085. "String instances are read-only"
  1086. self should: [ self collection addAll: self collection ] raise: Error
  1087. !
  1088. testAddRemove
  1089. self should: [ 'hello' add: 'a' ] raise: Error.
  1090. self should: [ 'hello' remove: 'h' ] raise: Error
  1091. !
  1092. testAsArray
  1093. self assert: 'hello' asArray equals: #('h' 'e' 'l' 'l' 'o').
  1094. !
  1095. testAsLowerCase
  1096. self assert: 'JACKIE' asLowercase equals: 'jackie'.
  1097. !
  1098. testAsNumber
  1099. self assert: '3' asNumber equals: 3.
  1100. self assert: '-3' asNumber equals: -3.
  1101. self assert: '-1.5' asNumber equals: -1.5.
  1102. !
  1103. testAsUpperCase
  1104. self assert: 'jackie' asUppercase equals: 'JACKIE'.
  1105. !
  1106. testAsciiValue
  1107. | characterA characterU |
  1108. characterA := 'A'.
  1109. characterU := 'U'.
  1110. self assert: (characterA asciiValue) equals:65.
  1111. self assert: (characterU asciiValue) equals:85
  1112. !
  1113. testAtIfAbsentPut
  1114. "String instances are read-only"
  1115. self should: [ 'hello' at: 6 ifAbsentPut: [ 'a' ] ] raise: Error
  1116. !
  1117. testAtPut
  1118. "String instances are read-only"
  1119. self should: [ 'hello' at: 1 put: 'a' ] raise: Error
  1120. !
  1121. testCapitalized
  1122. self assert: 'test' capitalized equals: 'Test'.
  1123. self assert: 'Test' capitalized equals: 'Test'.
  1124. self assert: '' capitalized equals: ''.
  1125. self assert: 'Test' isCapitalized equals: true.
  1126. self assert: 'test' isCapitalized equals: false.
  1127. !
  1128. testCharCodeAt
  1129. self assert: ('jackie' charCodeAt:1) equals: 106.
  1130. self assert: ('jackie' charCodeAt:2) equals: 97.
  1131. self assert: ('jackie' charCodeAt:3) equals: 99.
  1132. self assert: ('jackie' charCodeAt:4) equals: 107.
  1133. self assert: ('jackie' charCodeAt:5) equals: 105.
  1134. self assert: ('jackie' charCodeAt:6) equals: 101
  1135. !
  1136. testCopyFromTo
  1137. self assert: ('jackie' copyFrom: 1 to: 3) equals: 'jac'.
  1138. self assert: ('jackie' copyFrom: 4 to: 6) equals: 'kie'.
  1139. !
  1140. testCopyWithoutAll
  1141. self
  1142. assert: ('*hello* *world*' copyWithoutAll: '*')
  1143. equals: 'hello world'
  1144. !
  1145. testEquality
  1146. self assert: 'hello' equals: 'hello'.
  1147. self deny: 'hello' = 'world'.
  1148. "Test for issue 459"
  1149. self deny: 'hello' = (#() at: 1 ifAbsent: [ ]).
  1150. self assert: 'hello' equals: 'hello' yourself.
  1151. self assert: 'hello' yourself equals: 'hello'.
  1152. "test JS falsy value"
  1153. self deny: '' = 0
  1154. !
  1155. testIdentity
  1156. self assert: 'hello' == 'hello'.
  1157. self deny: 'hello' == 'world'.
  1158. self assert: 'hello' == 'hello' yourself.
  1159. self assert: 'hello' yourself == 'hello'.
  1160. "test JS falsy value"
  1161. self deny: '' == 0
  1162. !
  1163. testIncludesSubString
  1164. self assert: ('amber' includesSubString: 'ber').
  1165. self deny: ('amber' includesSubString: 'zork').
  1166. !
  1167. testIndexOfStartingAtWithNull
  1168. "String cannot hold JS null"
  1169. !
  1170. testIndexOfWithNull
  1171. "String cannot hold JS null"
  1172. !
  1173. testIsVowel
  1174. |vowel consonant|
  1175. vowel := 'u'.
  1176. consonant := 'z'.
  1177. self assert: vowel isVowel equals: true.
  1178. self assert: consonant isVowel equals: false
  1179. !
  1180. testJoin
  1181. self assert: (',' join: #('hello' 'world')) equals: 'hello,world'
  1182. !
  1183. testRemoveAll
  1184. self should: [ self collection removeAll ] raise: Error
  1185. !
  1186. testReversed
  1187. self assert: 'jackiechan' reversed equals: 'nahceikcaj'.
  1188. !
  1189. testStreamContents
  1190. self
  1191. assert: (String streamContents: [ :aStream |
  1192. aStream
  1193. nextPutAll: 'hello'; space;
  1194. nextPutAll: 'world' ])
  1195. equals: 'hello world'
  1196. !
  1197. testSubStrings
  1198. self assert: ('jackiechan' subStrings: 'ie') equals: #( 'jack' 'chan' ).
  1199. !
  1200. testTrim
  1201. self assert: ' jackie' trimLeft equals: 'jackie'.
  1202. self assert: 'jackie ' trimRight equals: 'jackie'.
  1203. !
  1204. testValue
  1205. self assert: (#asString value: 1) equals: '1'.
  1206. "Which (since String and BlockClosure are now polymorphic) enables the nice idiom..."
  1207. self assert: (#(1 2 3) collect: #asString) equals: #('1' '2' '3')
  1208. ! !
  1209. !StringTest class methodsFor: 'fixture'!
  1210. collectionClass
  1211. ^ String
  1212. ! !
  1213. CollectionTest subclass: #SetTest
  1214. instanceVariableNames: ''
  1215. package: 'Kernel-Tests'!
  1216. !SetTest methodsFor: 'fixture'!
  1217. collection
  1218. ^ Set new
  1219. add: Smalltalk;
  1220. add: nil;
  1221. add: 3@3;
  1222. add: false;
  1223. yourself
  1224. !
  1225. collectionOfPrintStrings
  1226. ^ Set new
  1227. add: 'a SmalltalkImage';
  1228. add: 'nil';
  1229. add: '3@3';
  1230. add: 'false';
  1231. yourself
  1232. !
  1233. collectionSize
  1234. ^ 4
  1235. !
  1236. collectionWithDuplicates
  1237. "Set has no duplicates"
  1238. ^ self collection add: 0; yourself
  1239. !
  1240. collectionWithNewValue
  1241. ^ Set new
  1242. add: Smalltalk;
  1243. add: nil;
  1244. add: 3@3;
  1245. add: 'N';
  1246. add: false;
  1247. yourself
  1248. ! !
  1249. !SetTest methodsFor: 'tests'!
  1250. testAddAll
  1251. super testAddAll.
  1252. self assert: (self collection addAll: self collection; yourself) equals: self collection.
  1253. self assert: (self collection addAll: self collectionWithNewValue; yourself) equals: self collectionWithNewValue.
  1254. self assert: (self collectionWithNewValue addAll: self collection; yourself) equals: self collectionWithNewValue
  1255. !
  1256. testAddRemove
  1257. | set |
  1258. set := Set new.
  1259. self assert: set isEmpty.
  1260. set add: 3.
  1261. self assert: (set includes: 3).
  1262. set add: 5.
  1263. self assert: (set includes: 5).
  1264. set remove: 3.
  1265. self deny: (set includes: 3)
  1266. !
  1267. testAt
  1268. self should: [ Set new at: 1 put: 2 ] raise: Error
  1269. !
  1270. testCollect
  1271. super testCollect.
  1272. self assert: (#(5 6 8) asSet collect: [ :x | x \\ 3 ]) equals: #(0 2) asSet
  1273. !
  1274. testComma
  1275. super testComma.
  1276. self assert: self collection, self collection equals: self collection.
  1277. self assert: self collection, self collectionWithNewValue equals: self collectionWithNewValue.
  1278. self assert: self collectionWithNewValue, self collection equals: self collectionWithNewValue
  1279. !
  1280. testComparing
  1281. self assert: #(0 2) asSet equals: #(0 2) asSet.
  1282. self assert: #(2 0) asSet equals: #(0 2) asSet.
  1283. self deny: #(0 2 3) asSet = #(0 2) asSet.
  1284. self deny: #(1 2) asSet = #(0 2) asSet
  1285. !
  1286. testPrintString
  1287. | set |
  1288. set := Set new.
  1289. self assert: set printString equals: 'a Set ()'.
  1290. set add: 1; add: 3.
  1291. self assert: set printString equals: 'a Set (1 3)'.
  1292. set add: 'foo'.
  1293. self assert: set printString equals: 'a Set (1 3 ''foo'')'.
  1294. set remove: 1; remove: 3.
  1295. self assert: set printString equals: 'a Set (''foo'')'.
  1296. set add: 3.
  1297. self assert: set printString equals: 'a Set (3 ''foo'')'.
  1298. set add: 3.
  1299. self assert: set printString equals: 'a Set (3 ''foo'')'
  1300. !
  1301. testUnboxedObjects
  1302. self assert: {'foo' yourself. 'foo' yourself} asSet asArray equals: #('foo')
  1303. !
  1304. testUnicity
  1305. | set |
  1306. set := Set new.
  1307. set add: 21.
  1308. set add: 'hello'.
  1309. set add: 21.
  1310. self assert: set size equals: 2.
  1311. set add: 'hello'.
  1312. self assert: set size equals: 2.
  1313. self assert: set asArray equals: #(21 'hello')
  1314. ! !
  1315. !SetTest class methodsFor: 'fixture'!
  1316. collectionClass
  1317. ^ Set
  1318. ! !
  1319. TestCase subclass: #ConsoleTranscriptTest
  1320. instanceVariableNames: ''
  1321. package: 'Kernel-Tests'!
  1322. !ConsoleTranscriptTest methodsFor: 'tests'!
  1323. testShow
  1324. | originalTranscript |
  1325. originalTranscript := Transcript current.
  1326. Transcript register: ConsoleTranscript new.
  1327. self shouldnt: [ Transcript show: 'Hello console!!' ] raise: Error.
  1328. self shouldnt: [ Transcript show: console ] raise: Error.
  1329. Transcript register: originalTranscript.
  1330. ! !
  1331. TestCase subclass: #DateTest
  1332. instanceVariableNames: ''
  1333. package: 'Kernel-Tests'!
  1334. !DateTest methodsFor: 'tests'!
  1335. testEquality
  1336. | now |
  1337. now := Date new.
  1338. self assert: now = now.
  1339. self deny: now = (Date fromMilliseconds: 0).
  1340. self assert: (Date fromMilliseconds: 12345678) = (Date fromMilliseconds: 12345678).
  1341. self assert: now = (Date fromMilliseconds: now asMilliseconds).
  1342. self assert: (Date fromMilliseconds: now asMilliseconds) = now
  1343. !
  1344. testIdentity
  1345. | now |
  1346. now := Date new.
  1347. self assert: now == now.
  1348. self deny: now == (Date fromMilliseconds: 0).
  1349. self deny: (Date fromMilliseconds: 12345678) == (Date fromMilliseconds: 12345678).
  1350. self deny: now == (Date fromMilliseconds: now asMilliseconds).
  1351. self deny: (Date fromMilliseconds: now asMilliseconds) == now
  1352. ! !
  1353. TestCase subclass: #JSObjectProxyTest
  1354. instanceVariableNames: ''
  1355. package: 'Kernel-Tests'!
  1356. !JSObjectProxyTest methodsFor: 'accessing'!
  1357. jsNull
  1358. <return null>
  1359. !
  1360. jsObject
  1361. <return {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': void 0}>
  1362. !
  1363. jsUndefined
  1364. <return>
  1365. ! !
  1366. !JSObjectProxyTest methodsFor: 'tests'!
  1367. testAtIfAbsent
  1368. | testObject |
  1369. testObject := self jsObject.
  1370. self assert: (testObject at: 'abc' ifAbsent: [ 'Property does not exist' ]) equals: 'Property does not exist'.
  1371. self assert: (testObject at: 'e' ifAbsent: [ 'Property does not exist' ]) equals: nil.
  1372. self assert: (testObject at: 'a' ifAbsent: [ 'Property does not exist' ]) equals: 1.
  1373. self assert: (testObject at: 'f' ifAbsent: [ 'Property does not exist' ]) equals: nil.
  1374. !
  1375. testAtIfPresent
  1376. | testObject |
  1377. testObject := self jsObject.
  1378. self assert: (testObject at: 'abc' ifPresent: [ :x | 'hello ',x asString ]) equals: nil.
  1379. self assert: (testObject at: 'e' ifPresent: [ :x | 'hello ',x asString ]) equals: 'hello nil'.
  1380. self assert: (testObject at: 'a' ifPresent: [ :x | 'hello ',x asString ]) equals: 'hello 1'.
  1381. self assert: (testObject at: 'f' ifPresent: [ :x | 'hello ',x asString ]) equals: 'hello nil'.
  1382. !
  1383. testAtIfPresentIfAbsent
  1384. | testObject |
  1385. testObject := self jsObject.
  1386. self assert: (testObject at: 'abc' ifPresent: [ :x|'hello ',x asString ] ifAbsent: [ 'not present' ]) equals: 'not present'.
  1387. self assert: (testObject at: 'e' ifPresent: [ :x|'hello ',x asString ] ifAbsent: [ 'not present' ]) equals: 'hello nil'.
  1388. self assert: (testObject at: 'a' ifPresent: [ :x|'hello ',x asString ] ifAbsent: [ 'not present' ]) equals: 'hello 1'.
  1389. self assert: (testObject at: 'f' ifPresent: [ :x|'hello ',x asString ] ifAbsent: [ 'not present' ]) equals: 'hello nil'.
  1390. !
  1391. testAtPut
  1392. | testObject |
  1393. testObject := self jsObject.
  1394. self assert: (testObject at: 'abc') ~= 'xyz'.
  1395. self assert: (testObject at: 'abc' put: 'xyz') equals: 'xyz'.
  1396. self assert: (testObject at: 'abc') equals: 'xyz'
  1397. !
  1398. testComparison
  1399. self assert: ({ console. 2 } indexOf: console) equals: 1.
  1400. self assert: console = console.
  1401. self deny: console = Object new.
  1402. self deny: console = self jsObject
  1403. !
  1404. testDNU
  1405. self should: [ self jsObject foo ] raise: MessageNotUnderstood
  1406. !
  1407. testDNURegression1057
  1408. | jsObject |
  1409. jsObject := #().
  1410. jsObject basicAt: 'allowJavaScriptCalls' put: true.
  1411. jsObject basicAt: 'foo' put: 3.
  1412. self shouldnt: [ jsObject foo ] raise: Error.
  1413. self assert: jsObject foo equals: 3.
  1414. self shouldnt: [ jsObject foo: 4 ] raise: Error.
  1415. self assert: jsObject foo equals: 4
  1416. !
  1417. testDNURegression1059
  1418. | jsObject |
  1419. jsObject := #().
  1420. jsObject basicAt: 'allowJavaScriptCalls' put: true.
  1421. jsObject basicAt: 'x' put: 3.
  1422. jsObject basicAt: 'x:' put: [ self error ].
  1423. self shouldnt: [ jsObject x: 4 ] raise: Error.
  1424. self assert: jsObject x equals: 4
  1425. !
  1426. testDNURegression1062
  1427. | jsObject stored |
  1428. jsObject := #().
  1429. jsObject basicAt: 'allowJavaScriptCalls' put: true.
  1430. jsObject basicAt: 'x' put: [ :v | stored := v ].
  1431. self shouldnt: [ jsObject x: 4 ] raise: Error.
  1432. self assert: stored equals: 4
  1433. !
  1434. testDNUWithAllowJavaScriptCalls
  1435. | jsObject |
  1436. jsObject := #().
  1437. jsObject basicAt: 'allowJavaScriptCalls' put: true.
  1438. self should: [ jsObject foo ] raise: MessageNotUnderstood
  1439. !
  1440. testMessageSend
  1441. self assert: self jsObject a equals: 1.
  1442. self assert: self jsObject b equals: 2.
  1443. self assert: (self jsObject c: 3) equals: 3
  1444. !
  1445. testMethodWithArguments
  1446. self assert: (self jsObject c: 1) equals: 1
  1447. !
  1448. testPrinting
  1449. self assert: self jsObject printString equals: '[object Object]'
  1450. !
  1451. testPropertyThatReturnsEmptyString
  1452. | object |
  1453. object := self jsObject.
  1454. self assert: object d equals: ''.
  1455. object d: 'hello'.
  1456. self assert: object d equals: 'hello'
  1457. !
  1458. testPropertyThatReturnsUndefined
  1459. | object |
  1460. object := self jsObject.
  1461. self shouldnt: [ object e ] raise: MessageNotUnderstood.
  1462. self assert: object e isNil
  1463. !
  1464. testSetPropertyWithFalsyValue
  1465. | jsObject |
  1466. jsObject := self jsObject.
  1467. self assert: (jsObject a) equals: 1.
  1468. jsObject a: self jsNull.
  1469. self assert: (jsObject a) equals: nil.
  1470. jsObject a: 0.
  1471. self assert: (jsObject a) equals: 0.
  1472. jsObject a: self jsUndefined.
  1473. self assert: (jsObject a) equals: nil.
  1474. jsObject a: ''.
  1475. self assert: (jsObject a) equals: ''.
  1476. jsObject a: false.
  1477. self assert: (jsObject a) equals: false
  1478. !
  1479. testValue
  1480. | testObject |
  1481. testObject := self jsObject.
  1482. testObject at: 'value' put: 'aValue'.
  1483. self assert: testObject value equals: 'aValue'
  1484. !
  1485. testYourself
  1486. | object |
  1487. object := self jsObject
  1488. d: 'test';
  1489. yourself.
  1490. self assert: object d equals: 'test'
  1491. ! !
  1492. TestCase subclass: #JavaScriptExceptionTest
  1493. instanceVariableNames: ''
  1494. package: 'Kernel-Tests'!
  1495. !JavaScriptExceptionTest methodsFor: 'helpers'!
  1496. throwException
  1497. <throw 'test'>
  1498. ! !
  1499. !JavaScriptExceptionTest methodsFor: 'tests'!
  1500. testCatchingException
  1501. [ self throwException ]
  1502. on: Error
  1503. do: [ :error |
  1504. self assert: error exception = 'test' ]
  1505. !
  1506. testRaisingException
  1507. self should: [ self throwException ] raise: JavaScriptException
  1508. ! !
  1509. TestCase subclass: #MessageSendTest
  1510. instanceVariableNames: ''
  1511. package: 'Kernel-Tests'!
  1512. !MessageSendTest methodsFor: 'tests'!
  1513. testValue
  1514. | messageSend |
  1515. messageSend := MessageSend new
  1516. receiver: Object new;
  1517. selector: #asString;
  1518. yourself.
  1519. self assert: messageSend value equals: 'an Object'
  1520. !
  1521. testValueWithArguments
  1522. | messageSend |
  1523. messageSend := MessageSend new
  1524. receiver: 2;
  1525. selector: '+';
  1526. yourself.
  1527. self assert: (messageSend value: 3) equals: 5.
  1528. self assert: (messageSend valueWithPossibleArguments: #(4)) equals: 6
  1529. ! !
  1530. TestCase subclass: #MethodInheritanceTest
  1531. instanceVariableNames: 'receiverTop receiverMiddle receiverBottom method performBlock'
  1532. package: 'Kernel-Tests'!
  1533. !MethodInheritanceTest methodsFor: 'accessing'!
  1534. codeGeneratorClass
  1535. ^ CodeGenerator
  1536. !
  1537. targetClassBottom
  1538. ^ JavaScriptException
  1539. !
  1540. targetClassMiddle
  1541. ^ Error
  1542. !
  1543. targetClassTop
  1544. ^ Object
  1545. ! !
  1546. !MethodInheritanceTest methodsFor: 'factory'!
  1547. compiler
  1548. ^ Compiler new
  1549. codeGeneratorClass: self codeGeneratorClass;
  1550. yourself
  1551. ! !
  1552. !MethodInheritanceTest methodsFor: 'initialization'!
  1553. setUp
  1554. receiverTop := self targetClassTop new.
  1555. receiverMiddle := self targetClassMiddle new.
  1556. receiverBottom := self targetClassBottom new.
  1557. method := nil.
  1558. performBlock := [ self error: 'performBlock not initialized' ]
  1559. !
  1560. tearDown
  1561. [ self deinstallTop ] on: Error do: [ ].
  1562. [ self deinstallMiddle ] on: Error do: [ ].
  1563. [ self deinstallBottom ] on: Error do: [ ]
  1564. ! !
  1565. !MethodInheritanceTest methodsFor: 'testing'!
  1566. deinstallBottom
  1567. self targetClassBottom removeCompiledMethod: method
  1568. !
  1569. deinstallMiddle
  1570. self targetClassMiddle removeCompiledMethod: method
  1571. !
  1572. deinstallTop
  1573. self targetClassTop removeCompiledMethod: method
  1574. !
  1575. installBottom: aString
  1576. method := self compiler install: aString forClass: self targetClassBottom protocol: 'tests'
  1577. !
  1578. installMiddle: aString
  1579. method := self compiler install: aString forClass: self targetClassMiddle protocol: 'tests'
  1580. !
  1581. installTop: aString
  1582. method := self compiler install: aString forClass: self targetClassTop protocol: 'tests'
  1583. !
  1584. shouldMNU
  1585. self shouldMNUTop.
  1586. self shouldMNUMiddle.
  1587. self shouldMNUBottom
  1588. !
  1589. shouldMNUBottom
  1590. self should: [ performBlock value: receiverBottom ] raise: MessageNotUnderstood
  1591. !
  1592. shouldMNUMiddle
  1593. self should: [ performBlock value: receiverMiddle ] raise: MessageNotUnderstood
  1594. !
  1595. shouldMNUTop
  1596. self should: [ performBlock value: receiverTop ] raise: MessageNotUnderstood
  1597. !
  1598. shouldReturn: anObject
  1599. | result |
  1600. result := performBlock value: receiverTop.
  1601. self assert: { 'top'. anObject } equals: { 'top'. result }.
  1602. result := performBlock value: receiverMiddle.
  1603. self assert: { 'middle'. anObject } equals: { 'middle'. result }.
  1604. result := performBlock value: receiverBottom.
  1605. self assert: { 'bottom'. anObject } equals: { 'bottom'. result }
  1606. !
  1607. shouldReturn: anObject and: anObject2 and: anObject3
  1608. | result |
  1609. result := performBlock value: receiverTop.
  1610. self assert: { 'top'. anObject } equals: { 'top'. result }.
  1611. result := performBlock value: receiverMiddle.
  1612. self assert: { 'middle'. anObject2 } equals: { 'middle'. result }.
  1613. result := performBlock value: receiverBottom.
  1614. self assert: { 'bottom'. anObject3 } equals: { 'bottom'. result }
  1615. ! !
  1616. !MethodInheritanceTest methodsFor: 'tests'!
  1617. testMNU11
  1618. performBlock := [ :x | x foo ].
  1619. self shouldMNU.
  1620. self installTop: 'foo ^ false'.
  1621. self installTop: 'foo ^ true'.
  1622. self deinstallTop.
  1623. self shouldMNU
  1624. !
  1625. testMNU22
  1626. performBlock := [ :x | x foo ].
  1627. self shouldMNU.
  1628. self installMiddle: 'foo ^ false'.
  1629. self installMiddle: 'foo ^ true'.
  1630. self deinstallMiddle.
  1631. self shouldMNU
  1632. !
  1633. testReturns1
  1634. performBlock := [ :x | x foo ].
  1635. self installTop: 'foo ^ false'.
  1636. self shouldReturn: false.
  1637. self installTop: 'foo ^ true'.
  1638. self shouldReturn: true
  1639. ! !
  1640. TestCase subclass: #NumberTest
  1641. instanceVariableNames: ''
  1642. package: 'Kernel-Tests'!
  1643. !NumberTest methodsFor: 'tests'!
  1644. testAbs
  1645. self assert: 4 abs equals: 4.
  1646. self assert: -4 abs equals: 4
  1647. !
  1648. testArithmetic
  1649. "We rely on JS here, so we won't test complex behavior, just check if
  1650. message sends are corrects"
  1651. self assert: 1.5 + 1 equals: 2.5.
  1652. self assert: 2 - 1 equals: 1.
  1653. self assert: -2 - 1 equals: -3.
  1654. self assert: 12 / 2 equals: 6.
  1655. self assert: 3 * 4 equals: 12.
  1656. self assert: 7 // 2 equals: 3.
  1657. self assert: 7 \\ 2 equals: 1.
  1658. "Simple parenthesis and execution order"
  1659. self assert: 1 + 2 * 3 equals: 9.
  1660. self assert: 1 + (2 * 3) equals: 7
  1661. !
  1662. testAsNumber
  1663. self assert: 3 asNumber equals: 3.
  1664. !
  1665. testCeiling
  1666. self assert: 1.2 ceiling equals: 2.
  1667. self assert: -1.2 ceiling equals: -1.
  1668. self assert: 1.0 ceiling equals: 1.
  1669. !
  1670. testComparison
  1671. self assert: 3 > 2.
  1672. self assert: 2 < 3.
  1673. self deny: 3 < 2.
  1674. self deny: 2 > 3.
  1675. self assert: 3 >= 3.
  1676. self assert: 3.1 >= 3.
  1677. self assert: 3 <= 3.
  1678. self assert: 3 <= 3.1
  1679. !
  1680. testCopying
  1681. self assert: 1 copy == 1.
  1682. self assert: 1 deepCopy == 1
  1683. !
  1684. testEquality
  1685. self assert: (1 = 1).
  1686. self assert: (0 = 0).
  1687. self deny: (1 = 0).
  1688. self assert: (1 yourself = 1).
  1689. self assert: (1 = 1 yourself).
  1690. self assert: (1 yourself = 1 yourself).
  1691. self deny: 0 = false.
  1692. self deny: false = 0.
  1693. self deny: '' = 0.
  1694. self deny: 0 = ''
  1695. !
  1696. testFloor
  1697. self assert: 1.2 floor equals: 1.
  1698. self assert: -1.2 floor equals: -2.
  1699. self assert: 1.0 floor equals: 1.
  1700. !
  1701. testHexNumbers
  1702. self assert: 16r9 equals: 9.
  1703. self assert: 16rA truncated equals: 10.
  1704. self assert: 16rB truncated equals: 11.
  1705. self assert: 16rC truncated equals: 12.
  1706. self assert: 16rD truncated equals: 13.
  1707. self assert: 16rE truncated equals: 14.
  1708. self assert: 16rF truncated equals: 15
  1709. !
  1710. testIdentity
  1711. self assert: 1 == 1.
  1712. self assert: 0 == 0.
  1713. self deny: 1 == 0.
  1714. self assert: 1 yourself == 1.
  1715. self assert: 1 == 1 yourself.
  1716. self assert: 1 yourself == 1 yourself.
  1717. self deny: 1 == 2
  1718. !
  1719. testInvalidHexNumbers
  1720. self should: [ 16rG ] raise: MessageNotUnderstood.
  1721. self should: [ 16rg ] raise: MessageNotUnderstood.
  1722. self should: [ 16rH ] raise: MessageNotUnderstood.
  1723. self should: [ 16rh ] raise: MessageNotUnderstood.
  1724. self should: [ 16rI ] raise: MessageNotUnderstood.
  1725. self should: [ 16ri ] raise: MessageNotUnderstood.
  1726. self should: [ 16rJ ] raise: MessageNotUnderstood.
  1727. self should: [ 16rj ] raise: MessageNotUnderstood.
  1728. self should: [ 16rK ] raise: MessageNotUnderstood.
  1729. self should: [ 16rk ] raise: MessageNotUnderstood.
  1730. self should: [ 16rL ] raise: MessageNotUnderstood.
  1731. self should: [ 16rl ] raise: MessageNotUnderstood.
  1732. self should: [ 16rM ] raise: MessageNotUnderstood.
  1733. self should: [ 16rm ] raise: MessageNotUnderstood.
  1734. self should: [ 16rN ] raise: MessageNotUnderstood.
  1735. self should: [ 16rn ] raise: MessageNotUnderstood.
  1736. self should: [ 16rO ] raise: MessageNotUnderstood.
  1737. self should: [ 16ro ] raise: MessageNotUnderstood.
  1738. self should: [ 16rP ] raise: MessageNotUnderstood.
  1739. self should: [ 16rp ] raise: MessageNotUnderstood.
  1740. self should: [ 16rQ ] raise: MessageNotUnderstood.
  1741. self should: [ 16rq ] raise: MessageNotUnderstood.
  1742. self should: [ 16rR ] raise: MessageNotUnderstood.
  1743. self should: [ 16rr ] raise: MessageNotUnderstood.
  1744. self should: [ 16rS ] raise: MessageNotUnderstood.
  1745. self should: [ 16rs ] raise: MessageNotUnderstood.
  1746. self should: [ 16rT ] raise: MessageNotUnderstood.
  1747. self should: [ 16rt ] raise: MessageNotUnderstood.
  1748. self should: [ 16rU ] raise: MessageNotUnderstood.
  1749. self should: [ 16ru ] raise: MessageNotUnderstood.
  1750. self should: [ 16rV ] raise: MessageNotUnderstood.
  1751. self should: [ 16rv ] raise: MessageNotUnderstood.
  1752. self should: [ 16rW ] raise: MessageNotUnderstood.
  1753. self should: [ 16rw ] raise: MessageNotUnderstood.
  1754. self should: [ 16rX ] raise: MessageNotUnderstood.
  1755. self should: [ 16rx ] raise: MessageNotUnderstood.
  1756. self should: [ 16rY ] raise: MessageNotUnderstood.
  1757. self should: [ 16ry ] raise: MessageNotUnderstood.
  1758. self should: [ 16rZ ] raise: MessageNotUnderstood.
  1759. self should: [ 16rz ] raise: MessageNotUnderstood.
  1760. self should: [ 16rABcdEfZ ] raise: MessageNotUnderstood.
  1761. !
  1762. testLog
  1763. self assert: 10000 log equals: 4.
  1764. self assert: (512 log: 2) equals: 9.
  1765. self assert: Number e ln equals: 1.
  1766. !
  1767. testMinMax
  1768. self assert: (2 max: 5) equals: 5.
  1769. self assert: (2 min: 5) equals: 2
  1770. !
  1771. testNegated
  1772. self assert: 3 negated equals: -3.
  1773. self assert: -3 negated equals: 3
  1774. !
  1775. testPrintShowingDecimalPlaces
  1776. self assert: (23 printShowingDecimalPlaces: 2) equals: '23.00'.
  1777. self assert: (23.5698 printShowingDecimalPlaces: 2) equals: '23.57'.
  1778. self assert: (234.567 negated printShowingDecimalPlaces: 5) equals: '-234.56700'.
  1779. self assert: (23.4567 printShowingDecimalPlaces: 0) equals: '23'.
  1780. self assert: (23.5567 printShowingDecimalPlaces: 0) equals: '24'.
  1781. self assert: (23.4567 negated printShowingDecimalPlaces: 0) equals: '-23'.
  1782. self assert: (23.5567 negated printShowingDecimalPlaces: 0) equals: '-24'.
  1783. self assert: (100000000 printShowingDecimalPlaces: 1) equals: '100000000.0'.
  1784. self assert: (0.98 printShowingDecimalPlaces: 5) equals: '0.98000'.
  1785. self assert: (0.98 negated printShowingDecimalPlaces: 2) equals: '-0.98'.
  1786. self assert: (2.567 printShowingDecimalPlaces: 2) equals: '2.57'.
  1787. self assert: (-2.567 printShowingDecimalPlaces: 2) equals: '-2.57'.
  1788. self assert: (0 printShowingDecimalPlaces: 2) equals: '0.00'.
  1789. !
  1790. testRaisedTo
  1791. self assert: (2 raisedTo: 4) equals: 16.
  1792. self assert: (2 raisedTo: 0) equals: 1.
  1793. self assert: (2 raisedTo: -3) equals: 0.125.
  1794. self assert: (4 raisedTo: 0.5) equals: 2.
  1795. self assert: 2 ** 4 equals: 16.
  1796. !
  1797. testRounded
  1798. self assert: 3 rounded equals: 3.
  1799. self assert: 3.212 rounded equals: 3.
  1800. self assert: 3.51 rounded equals: 4
  1801. !
  1802. testSign
  1803. self assert: 5 sign equals: 1.
  1804. self assert: 0 sign equals: 0.
  1805. self assert: -1.4 sign equals: -1.
  1806. !
  1807. testSqrt
  1808. self assert: 4 sqrt equals: 2.
  1809. self assert: 16 sqrt equals: 4
  1810. !
  1811. testSquared
  1812. self assert: 4 squared equals: 16
  1813. !
  1814. testTimesRepeat
  1815. | i |
  1816. i := 0.
  1817. 0 timesRepeat: [ i := i + 1 ].
  1818. self assert: i equals: 0.
  1819. 5 timesRepeat: [ i := i + 1 ].
  1820. self assert: i equals: 5
  1821. !
  1822. testTo
  1823. self assert: (1 to: 5) equals: #(1 2 3 4 5)
  1824. !
  1825. testToBy
  1826. self assert: (0 to: 6 by: 2) equals: #(0 2 4 6).
  1827. self should: [ 1 to: 4 by: 0 ] raise: Error
  1828. !
  1829. testTrigonometry
  1830. self assert: 0 cos equals: 1.
  1831. self assert: 0 sin equals: 0.
  1832. self assert: 0 tan equals: 0.
  1833. self assert: 1 arcCos equals: 0.
  1834. self assert: 0 arcSin equals: 0.
  1835. self assert: 0 arcTan equals: 0.
  1836. !
  1837. testTruncated
  1838. self assert: 3 truncated equals: 3.
  1839. self assert: 3.212 truncated equals: 3.
  1840. self assert: 3.51 truncated equals: 3
  1841. ! !
  1842. Object subclass: #ObjectMock
  1843. instanceVariableNames: 'foo bar'
  1844. package: 'Kernel-Tests'!
  1845. !ObjectMock commentStamp!
  1846. ObjectMock is there only to perform tests on classes.!
  1847. !ObjectMock methodsFor: 'not yet classified'!
  1848. foo
  1849. ^ foo
  1850. !
  1851. foo: anObject
  1852. foo := anObject
  1853. ! !
  1854. TestCase subclass: #ObjectTest
  1855. instanceVariableNames: ''
  1856. package: 'Kernel-Tests'!
  1857. !ObjectTest methodsFor: 'tests'!
  1858. notDefined
  1859. <return void 0;>
  1860. !
  1861. testBasicAccess
  1862. | o |
  1863. o := Object new.
  1864. o basicAt: 'a' put: 1.
  1865. self assert: (o basicAt: 'a') equals: 1.
  1866. self assert: (o basicAt: 'b') equals: nil
  1867. !
  1868. testBasicPerform
  1869. | o |
  1870. o := Object new.
  1871. o basicAt: 'func' put: [ 'hello' ].
  1872. o basicAt: 'func2' put: [ :a | a + 1 ].
  1873. self assert: (o basicPerform: 'func') equals: 'hello'.
  1874. self assert: (o basicPerform: 'func2' withArguments: #(3)) equals: 4
  1875. !
  1876. testDNU
  1877. self should: [ Object new foo ] raise: MessageNotUnderstood
  1878. !
  1879. testEquality
  1880. | o |
  1881. o := Object new.
  1882. self deny: o = Object new.
  1883. self assert: (o = o).
  1884. self assert: (o yourself = o).
  1885. self assert: (o = o yourself)
  1886. !
  1887. testHalt
  1888. self should: [ Object new halt ] raise: Error
  1889. !
  1890. testIdentity
  1891. | o |
  1892. o := Object new.
  1893. self deny: o == Object new.
  1894. self assert: o == o.
  1895. self assert: o yourself == o.
  1896. self assert: o == o yourself
  1897. !
  1898. testIfNil
  1899. self deny: Object new isNil.
  1900. self deny: (Object new ifNil: [ true ]) = true.
  1901. self assert: (Object new ifNotNil: [ true ]) equals: true.
  1902. self assert: (Object new ifNil: [ false ] ifNotNil: [ true ]) equals: true.
  1903. self assert: (Object new ifNotNil: [ true ] ifNil: [ false ]) equals: true
  1904. !
  1905. testInstVars
  1906. | o |
  1907. o := ObjectMock new.
  1908. self assert: (o instVarAt: #foo) equals: nil.
  1909. o instVarAt: #foo put: 1.
  1910. self assert: (o instVarAt: #foo) equals: 1.
  1911. self assert: (o instVarAt: 'foo') equals: 1
  1912. !
  1913. testNilUndefined
  1914. "nil in Smalltalk is the undefined object in JS"
  1915. self assert: self notDefined equals: nil
  1916. !
  1917. testYourself
  1918. | o |
  1919. o := ObjectMock new.
  1920. self assert: o yourself == o
  1921. !
  1922. testidentityHash
  1923. | o1 o2 |
  1924. o1 := Object new.
  1925. o2 := Object new.
  1926. self assert: o1 identityHash == o1 identityHash.
  1927. self deny: o1 identityHash == o2 identityHash
  1928. ! !
  1929. TestCase subclass: #PointTest
  1930. instanceVariableNames: ''
  1931. package: 'Kernel-Tests'!
  1932. !PointTest methodsFor: 'tests'!
  1933. testAccessing
  1934. self assert: (Point x: 3 y: 4) x equals: 3.
  1935. self assert: (Point x: 3 y: 4) y equals: 4.
  1936. self assert: (Point new x: 3) x equals: 3.
  1937. self assert: (Point new y: 4) y equals: 4
  1938. !
  1939. testArithmetic
  1940. self assert: 3@4 * (3@4 ) equals: (Point x: 9 y: 16).
  1941. self assert: 3@4 + (3@4 ) equals: (Point x: 6 y: 8).
  1942. self assert: 3@4 - (3@4 ) equals: (Point x: 0 y: 0).
  1943. self assert: 6@8 / (3@4 ) equals: (Point x: 2 y: 2)
  1944. !
  1945. testAt
  1946. self assert: 3@4 equals: (Point x: 3 y: 4)
  1947. !
  1948. testComparison
  1949. self assert: 3@4 < (4@5).
  1950. self deny: 3@4 < (4@4).
  1951. self assert: 4@5 <= (4@5).
  1952. self deny: 4@5 <= (3@5).
  1953. self assert: 5@6 > (4@5).
  1954. self deny: 5@6 > (6@6).
  1955. self assert: 4@5 >= (4@5).
  1956. self deny: 4@5 >= (5@5)
  1957. !
  1958. testEgality
  1959. self assert: (3@4 = (3@4)).
  1960. self deny: 3@5 = (3@6)
  1961. !
  1962. testNew
  1963. self assert: (Point new x: 3) y equals: nil.
  1964. self deny: (Point new x: 3) x = 0.
  1965. self assert: (Point new y: 4) x equals: nil.
  1966. self deny: (Point new y: 4) y = 0
  1967. !
  1968. testTranslateBy
  1969. self assert: (3@3 translateBy: 0@1) equals: 3@4.
  1970. self assert: (3@3 translateBy: 0@1 negated) equals: 3@2.
  1971. self assert: (3@3 translateBy: 2@3) equals: 5@6.
  1972. self assert: (3@3 translateBy: 3 negated @0) equals: 0@3.
  1973. ! !
  1974. TestCase subclass: #QueueTest
  1975. instanceVariableNames: ''
  1976. package: 'Kernel-Tests'!
  1977. !QueueTest methodsFor: 'tests'!
  1978. testNextIfAbsent
  1979. | queue |
  1980. queue := Queue new.
  1981. queue nextPut: 'index1'.
  1982. self assert: (queue nextIfAbsent: 'empty') = 'index1'.
  1983. self deny: (queue nextIfAbsent: 'empty') = 'index1'
  1984. !
  1985. testQueueNext
  1986. | queue |
  1987. queue := Queue new.
  1988. queue
  1989. nextPut: 'index1';
  1990. nextPut: 'index2'.
  1991. self assert: queue next = 'index1'.
  1992. self deny: queue next = 'index'.
  1993. self should: [ queue next ] raise: Error
  1994. ! !
  1995. TestCase subclass: #RandomTest
  1996. instanceVariableNames: ''
  1997. package: 'Kernel-Tests'!
  1998. !RandomTest methodsFor: 'tests'!
  1999. testAtRandomNumber
  2000. |val|
  2001. 100 timesRepeat: [
  2002. val := 10 atRandom.
  2003. self assert: (val > 0).
  2004. self assert: (val <11)
  2005. ]
  2006. !
  2007. testAtRandomSequenceableCollection
  2008. |val|
  2009. 100 timesRepeat: [
  2010. val := 'abc' atRandom.
  2011. self assert: ((val = 'a') | (val = 'b') | (val = 'c' )).
  2012. ].
  2013. !
  2014. textNext
  2015. 10000 timesRepeat: [
  2016. | current next |
  2017. next := Random new next.
  2018. self assert: (next >= 0).
  2019. self assert: (next < 1).
  2020. self deny: current = next.
  2021. next = current ]
  2022. ! !
  2023. TestCase subclass: #StreamTest
  2024. instanceVariableNames: ''
  2025. package: 'Kernel-Tests'!
  2026. !StreamTest methodsFor: 'accessing'!
  2027. collectionClass
  2028. ^ self class collectionClass
  2029. !
  2030. newCollection
  2031. ^ self collectionClass new
  2032. !
  2033. newStream
  2034. ^ self collectionClass new stream
  2035. ! !
  2036. !StreamTest methodsFor: 'tests'!
  2037. testAtStartAtEnd
  2038. | stream |
  2039. stream := self newStream.
  2040. self assert: stream atStart.
  2041. self assert: stream atEnd.
  2042. stream nextPutAll: self newCollection.
  2043. self assert: stream atEnd.
  2044. self deny: stream atStart.
  2045. stream position: 1.
  2046. self deny: stream atEnd.
  2047. self deny: stream atStart
  2048. !
  2049. testContents
  2050. | stream |
  2051. stream := self newStream.
  2052. stream nextPutAll: self newCollection.
  2053. self assert: stream contents equals: self newCollection
  2054. !
  2055. testIsEmpty
  2056. | stream |
  2057. stream := self newStream.
  2058. self assert: stream isEmpty.
  2059. stream nextPutAll: self newCollection.
  2060. self deny: stream isEmpty
  2061. !
  2062. testPosition
  2063. | collection stream |
  2064. collection := self newCollection.
  2065. stream := self newStream.
  2066. stream nextPutAll: collection.
  2067. self assert: stream position equals: collection size.
  2068. stream position: 0.
  2069. self assert: stream position equals: 0.
  2070. stream next.
  2071. self assert: stream position equals: 1.
  2072. stream next.
  2073. self assert: stream position equals: 2
  2074. !
  2075. testReading
  2076. | stream collection |
  2077. collection := self newCollection.
  2078. stream := self newStream.
  2079. stream
  2080. nextPutAll: collection;
  2081. position: 0.
  2082. collection do: [ :each |
  2083. self assert: stream next equals: each ].
  2084. self assert: stream next isNil
  2085. !
  2086. testStreamContents
  2087. !
  2088. testWrite
  2089. | stream collection |
  2090. collection := self newCollection.
  2091. stream := self newStream.
  2092. collection do: [ :each | stream << each ].
  2093. self assert: stream contents equals: collection
  2094. !
  2095. testWriting
  2096. | stream collection |
  2097. collection := self newCollection.
  2098. stream := self newStream.
  2099. collection do: [ :each | stream nextPut: each ].
  2100. self assert: stream contents equals: collection.
  2101. stream := self newStream.
  2102. stream nextPutAll: collection.
  2103. self assert: stream contents equals: collection
  2104. ! !
  2105. !StreamTest class methodsFor: 'accessing'!
  2106. collectionClass
  2107. ^ nil
  2108. ! !
  2109. !StreamTest class methodsFor: 'testing'!
  2110. isAbstract
  2111. ^ self collectionClass isNil
  2112. ! !
  2113. StreamTest subclass: #ArrayStreamTest
  2114. instanceVariableNames: ''
  2115. package: 'Kernel-Tests'!
  2116. !ArrayStreamTest methodsFor: 'accessing'!
  2117. newCollection
  2118. ^ { true. 1. 3@4. 'foo' }
  2119. ! !
  2120. !ArrayStreamTest class methodsFor: 'accessing'!
  2121. collectionClass
  2122. ^ Array
  2123. ! !
  2124. StreamTest subclass: #StringStreamTest
  2125. instanceVariableNames: ''
  2126. package: 'Kernel-Tests'!
  2127. !StringStreamTest methodsFor: 'accessing'!
  2128. newCollection
  2129. ^ 'hello world'
  2130. ! !
  2131. !StringStreamTest class methodsFor: 'accessing'!
  2132. collectionClass
  2133. ^ String
  2134. ! !
  2135. TestCase subclass: #UndefinedTest
  2136. instanceVariableNames: ''
  2137. package: 'Kernel-Tests'!
  2138. !UndefinedTest methodsFor: 'tests'!
  2139. testCopying
  2140. self assert: nil copy equals: nil
  2141. !
  2142. testDeepCopy
  2143. self assert: nil deepCopy = nil
  2144. !
  2145. testIfNil
  2146. self assert: (nil ifNil: [ true ]) equals: true.
  2147. self deny: (nil ifNotNil: [ true ]) = true.
  2148. self assert: (nil ifNil: [ true ] ifNotNil: [ false ]) equals: true.
  2149. self deny: (nil ifNotNil: [ true ] ifNil: [ false ]) = true
  2150. !
  2151. testIsNil
  2152. self assert: nil isNil.
  2153. self deny: nil notNil.
  2154. ! !