Kernel-Tests.st 65 KB

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