12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766 |
- Smalltalk current createPackage: 'Kernel-Tests'!
- TestCase subclass: #BlockClosureTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !BlockClosureTest methodsFor: 'tests'!
- testCanClearInterval
- self shouldnt: [([Error new signal] valueWithInterval: 0) clearInterval] raise: Error
- !
- testCanClearTimeout
- self shouldnt: [([Error new signal] valueWithTimeout: 0) clearTimeout] raise: Error
- !
- testCompiledSource
- self assert: ([1+1] compiledSource includesSubString: 'function')
- !
- testCurrySelf
- | curriedMethod array |
- curriedMethod := [ :selfarg :x | selfarg at: x ] currySelf asCompiledMethod: 'foo:'.
- array := #(3 1 4).
- ClassBuilder new installMethod: curriedMethod forClass: Array category: '**test helper'.
- [ self assert: (array foo: 2) equals: 1 ]
- ensure: [ Array removeCompiledMethod: curriedMethod ]
- !
- testEnsure
- self assert: ([3] ensure: [4]) equals: 3
- !
- testEnsureRaises
- self should: [[Error new signal] ensure: [true]] raise: Error
- !
- testExceptionSemantics
- "See https://github.com/NicolasPetton/amber/issues/314"
- self timeout: 100.
-
- (self async: [
- [
- self assert: true.
- Error signal.
- "The following should *not* be run"
- self deny: true.
- self finished.
- ] on: Error do: [ :ex | self finished ]
- ]) valueWithTimeout: 0
- !
- testNumArgs
- self assert: [] numArgs equals: 0.
- self assert: [:a :b | ] numArgs equals: 2
- !
- testOnDo
- self assert: ([Error new signal] on: Error do: [:ex | true])
- !
- testValue
- self assert: ([1+1] value) equals: 2.
- self assert: ([:x | x +1] value: 2) equals: 3.
- self assert: ([:x :y | x*y] value: 2 value: 4) equals: 8.
- "Arguments are optional in Amber. This isn't ANSI compliant."
- self assert: ([:a :b :c | 1] value) equals: 1
- !
- testValueWithPossibleArguments
- self assert: ([1] valueWithPossibleArguments: #(3 4)) equals: 1.
- self assert: ([:a | a + 4] valueWithPossibleArguments: #(3 4)) equals: 7.
- self assert: ([:a :b | a + b] valueWithPossibleArguments: #(3 4 5)) equals: 7.
- !
- testWhileFalse
- | i |
- i := 0.
- [i > 5] whileFalse: [i := i + 1].
- self assert: i equals: 6.
- i := 0.
- [i := i + 1. i > 5] whileFalse.
- self assert: i equals: 6
- !
- testWhileTrue
- | i |
- i := 0.
- [i < 5] whileTrue: [i := i + 1].
- self assert: i equals: 5.
- i := 0.
- [i := i + 1. i < 5] whileTrue.
- self assert: i equals: 5
- ! !
- TestCase subclass: #BooleanTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !BooleanTest methodsFor: 'tests'!
- testEquality
- "We're on top of JS...just be sure to check the basics!!"
- self deny: 0 = false.
- self deny: false = 0.
- self deny: '' = false.
- self deny: false = ''.
- self assert: (true = true).
- self deny: false = true.
- self deny: true = false.
- self assert: (false = false).
- "JS may do some type coercing after sending a message"
- self assert: (true yourself = true).
- self assert: (true yourself = true yourself)
- !
- testIdentity
- "We're on top of JS...just be sure to check the basics!!"
- self deny: 0 == false.
- self deny: false == 0.
- self deny: '' == false.
- self deny: false == ''.
- self assert: true == true.
- self deny: false == true.
- self deny: true == false.
- self assert: false == false.
- "JS may do some type coercing after sending a message"
- self assert: true yourself == true.
- self assert: true yourself == true yourself
- !
- testIfTrueIfFalse
- self assert: (true ifTrue: ['alternative block']) equals: 'alternative block'.
- self assert: (true ifFalse: ['alternative block']) equals: nil.
- self assert: (false ifTrue: ['alternative block']) equals: nil.
- self assert: (false ifFalse: ['alternative block']) equals: 'alternative block'.
- self assert: (false ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.
- self assert: (false ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.
- self assert: (true ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.
- self assert: (true ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.
- !
- testIfTrueIfFalseWithBoxing
- self assert: (true yourself ifTrue: ['alternative block']) equals: 'alternative block'.
- self assert: (true yourself ifFalse: ['alternative block']) equals: nil.
- self assert: (false yourself ifTrue: ['alternative block']) equals: nil.
- self assert: (false yourself ifFalse: ['alternative block']) equals: 'alternative block'.
- self assert: (false yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.
- self assert: (false yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.
- self assert: (true yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.
- self assert: (true yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.
- !
- testLogic
- "Trivial logic table"
- self assert: (true & true);
- deny: (true & false);
- deny: (false & true);
- deny: (false & false).
- self assert: (true | true);
- assert: (true | false);
- assert: (false | true);
- deny: (false | false).
- "Checking that expressions work fine too"
- self assert: (true & (1 > 0));
- deny: ((1 > 0) & false);
- deny: ((1 > 0) & (1 > 2)).
- self assert: (false | (1 > 0));
- assert: ((1 > 0) | false);
- assert: ((1 > 0) | (1 > 2))
- !
- testLogicKeywords
- "Trivial logic table"
- self
- assert: (true and: [ true]);
- deny: (true and: [ false ]);
- deny: (false and: [ true ]);
- deny: (false and: [ false ]).
- self
- assert: (true or: [ true ]);
- assert: (true or: [ false ]);
- assert: (false or: [ true ]);
- deny: (false or: [ false ]).
-
- "Checking that expressions work fine too"
- self
- assert: (true and: [ 1 > 0 ]);
- deny: ((1 > 0) and: [ false ]);
- deny: ((1 > 0) and: [ 1 > 2 ]).
- self
- assert: (false or: [ 1 > 0 ]);
- assert: ((1 > 0) or: [ false ]);
- assert: ((1 > 0) or: [ 1 > 2 ])
- !
- testNonBooleanError
- self should: [ '' ifTrue: [] ifFalse: [] ] raise: NonBooleanReceiver
- ! !
- TestCase subclass: #ClassBuilderTest
- instanceVariableNames: 'builder theClass'
- package: 'Kernel-Tests'!
- !ClassBuilderTest methodsFor: 'running'!
- setUp
- builder := ClassBuilder new
- !
- tearDown
- theClass ifNotNil: [Smalltalk current removeClass: theClass. theClass := nil]
- ! !
- !ClassBuilderTest methodsFor: 'tests'!
- testClassCopy
- theClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
- self assert: theClass superclass == ObjectMock superclass.
- self assert: theClass instanceVariableNames == ObjectMock instanceVariableNames.
- self assert: theClass name equals: 'ObjectMock2'.
- self assert: theClass package == ObjectMock package.
- self assert: theClass methodDictionary keys equals: ObjectMock methodDictionary keys
- !
- testClassMigration
- | instance oldClass |
-
- oldClass := builder copyClass: ObjectMock named: 'ObjectMock2'.
- instance := (Smalltalk current at: 'ObjectMock2') new.
-
- "Change the superclass of ObjectMock2"
- ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
- instanceVariableNames: ''
- package: 'Kernel-Tests'.
-
- self deny: oldClass == ObjectMock2.
-
- self assert: ObjectMock2 superclass == ObjectMock.
- self assert: ObjectMock2 instanceVariableNames isEmpty.
- self assert: ObjectMock2 selectors equals: oldClass selectors.
- self assert: ObjectMock2 comment equals: oldClass comment.
- self assert: ObjectMock2 package name equals: 'Kernel-Tests'.
-
- self deny: instance class == ObjectMock2.
- "Commeting this out. Tests implementation detail."
- "self assert: instance class name equals: 'OldObjectMock2'."
-
- self assert: (Smalltalk current at: instance class name) isNil.
-
- Smalltalk current removeClass: ObjectMock2
- !
- testClassMigrationWithClassInstanceVariables
-
- builder copyClass: ObjectMock named: 'ObjectMock2'.
- ObjectMock2 class instanceVariableNames: 'foo bar'.
-
- "Change the superclass of ObjectMock2"
- ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
- instanceVariableNames: ''
- package: 'Kernel-Tests'.
-
- self assert: ObjectMock2 class instanceVariableNames equals: #('foo' 'bar').
-
- Smalltalk current removeClass: ObjectMock2
- !
- testClassMigrationWithSubclasses
-
- builder copyClass: ObjectMock named: 'ObjectMock2'.
- ObjectMock2 subclass: 'ObjectMock3' instanceVariableNames: '' package: 'Kernel-Tests'.
- ObjectMock3 subclass: 'ObjectMock4' instanceVariableNames: '' package: 'Kernel-Tests'.
-
- "Change the superclass of ObjectMock2"
- ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')
- instanceVariableNames: ''
- package: 'Kernel-Tests'.
-
- self assert: (ObjectMock subclasses includes: ObjectMock2).
- self assert: (ObjectMock2 subclasses includes: ObjectMock3).
- self assert: (ObjectMock3 subclasses includes: ObjectMock4).
-
- ObjectMock allSubclasses do: [ :each | Smalltalk current removeClass: each ]
- !
- testInstanceVariableNames
- self assert: (builder instanceVariableNamesFor: ' hello world ') equals: #('hello' 'world')
- ! !
- TestCase subclass: #CollectionTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !CollectionTest methodsFor: 'accessing'!
- collection
- ^ self collectionClass withAll: self defaultValues
- !
- collectionClass
- ^ self class collectionClass
- !
- collectionWithDuplicates
- ^ self collectionClass withAll: #('a' 'b' 'c' 1 2 1 'a')
- !
- defaultValues
- ^ #(1 2 3 -4)
- ! !
- !CollectionTest methodsFor: 'convenience'!
- assertSameContents: aCollection as: anotherCollection
- self assert: (aCollection size = anotherCollection size).
- aCollection do: [ :each |
- self assert: ((aCollection occurrencesOf: each) = (anotherCollection occurrencesOf: each)) ]
- ! !
- !CollectionTest methodsFor: 'testing'!
- isCollectionReadOnly
- ^ false
- ! !
- !CollectionTest methodsFor: 'tests'!
- testAsArray
- self
- assertSameContents: self collection
- as: self collection asArray
- !
- testAsOrderedCollection
- self
- assertSameContents: self collection
- as: self collection asOrderedCollection
- !
- testAsSet
- | c set |
- c := self collectionWithDuplicates.
- set := c asSet.
- self assert: set size equals: 5.
- c do: [ :each |
- self assert: (set includes: each) ]
- !
- testCollect
- | newCollection |
- newCollection := #(1 2 3 4).
- self
- assertSameContents: (self collection collect: [ :each |
- each abs ])
- as: newCollection
- !
- testDetect
- self assert: (self collection detect: [ :each | each < 0 ]) equals: -4.
- self
- should: [ self collection detect: [ :each | each = 6 ] ]
- raise: Error
- !
- testDo
- | newCollection |
- newCollection := OrderedCollection new.
- self collection do: [ :each |
- newCollection add: each ].
- self
- assertSameContents: self collection
- as: newCollection
- !
- testIsEmpty
- self assert: self collectionClass new isEmpty.
- self deny: self collection isEmpty
- !
- testSelect
- | newCollection |
- newCollection := #(2 -4).
- self
- assertSameContents: (self collection select: [ :each |
- each even ])
- as: newCollection
- !
- testSize
- self assert: self collectionClass new size equals: 0.
- self assert: self collection size equals: 4
- ! !
- !CollectionTest class methodsFor: 'accessing'!
- collectionClass
- ^ nil
- ! !
- !CollectionTest class methodsFor: 'testing'!
- isAbstract
- ^ self collectionClass isNil
- ! !
- CollectionTest subclass: #IndexableCollectionTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !IndexableCollectionTest methodsFor: 'tests'!
- testAt
- self assert: (self collection at: 4) equals: -4.
- self should: [ self collection at: 5 ] raise: Error
- !
- testAtIfAbsent
- self assert: (self collection at: (self collection size + 1) ifAbsent: [ 'none' ]) equals: 'none'
- !
- testContains
- | collection |
- collection := self collection.
-
- self assert: (self collection contains: [ :each | each = self collection first ]).
- self deny: (self collection contains: [ :each | each = Object new ])
- !
- testIndexOf
- self assert: (self collection indexOf: 2) equals: 2.
- self should: [ self collection indexOf: 999 ] raise: Error.
- self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
- !
- testWithIndexDo
- | collection |
- collection := self collection.
-
- self collection withIndexDo: [ :each :index |
- self assert: (collection at: index) equals: each ]
- ! !
- IndexableCollectionTest subclass: #HashedCollectionTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !HashedCollectionTest methodsFor: 'accessing'!
- collection
- ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4 }
- !
- collectionWithDuplicates
- ^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4. 'e' -> 1. 'f' -> 2. 'g' -> 10 }
- ! !
- !HashedCollectionTest methodsFor: 'tests'!
- testAt
- self assert: (self collection at: 'a') equals: 2.
- self should: [ self collection at: 5 ] raise: Error
- !
- testContains
- | collection |
- collection := self collection.
-
- self assert: (self collection contains: [ :each | each = self collection values first ]).
- self deny: (self collection contains: [ :each | each = Object new ])
- !
- testIndexOf
- self assert: (self collection indexOf: 2) equals: 'a'.
- self should: [ self collection indexOf: 999 ] raise: Error.
- self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
- ! !
- !HashedCollectionTest class methodsFor: 'accessing'!
- collectionClass
- ^ HashedCollection
- ! !
- HashedCollectionTest subclass: #DictionaryTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !DictionaryTest methodsFor: 'accessing'!
- collection
- ^ Dictionary new
- at: 1 put: 1;
- at: 'a' put: 2;
- at: true put: 3;
- at: 4 put: -4;
- yourself
- !
- collectionWithDuplicates
- ^ Dictionary new
- at: 1 put: 1;
- at: 'a' put: 2;
- at: true put: 3;
- at: 4 put: -4;
- at: 'b' put: 1;
- at: 3 put: 3;
- at: false put: 12;
- yourself
- ! !
- !DictionaryTest methodsFor: 'tests'!
- testAccessing
- | d |
- d := Dictionary new.
- d at: 'hello' put: 'world'.
- self assert: (d at: 'hello') equals: 'world'.
- self assert: (d at: 'hello' ifAbsent: [nil]) equals: 'world'.
- self deny: (d at: 'foo' ifAbsent: [nil]) = 'world'.
- self assert: (d includesKey: 'hello').
- self deny: (d includesKey: 'foo').
- d at: 1 put: 2.
- self assert: (d at: 1) equals: 2.
- d at: 1@3 put: 3.
- self assert: (d at: 1@3) equals: 3.
- self assert: (d includesKey: 1@3).
- self deny: (d includesKey: 3@1)
- !
- testDynamicDictionaries
- self assert: #{'hello' -> 1} asDictionary equals: (Dictionary with: 'hello' -> 1)
- !
- testEquality
- | d1 d2 |
- self assert: (Dictionary new = Dictionary new).
-
- d1 := Dictionary new at: 1 put: 2; yourself.
- d2 := Dictionary new at: 1 put: 2; yourself.
- self assert: (d1 = d2).
- d2 := Dictionary new at: 1 put: 3; yourself.
- self deny: d1 = d2.
- d2 := Dictionary new at: 2 put: 2; yourself.
- self deny: d1 = d2.
- d2 := Dictionary new at: 1 put: 2; at: 3 put: 4; yourself.
- self deny: d1 = d2.
- !
- testIfAbsent
- | d visited |
- visited := false.
- d := Dictionary new.
- d at: 'hello' ifAbsent: [ visited := true ].
- self assert: visited.
- !
- testIfPresent
- | d visited absent |
- visited := false.
- d := Dictionary new.
- d at: 'hello' put: 'world'.
- d at: 'hello' ifPresent: [ :value | visited := value ].
- self assert: visited equals: 'world'.
- absent := d at: 'bye' ifPresent: [ :value | visited := value ].
- self assert: absent isNil.
- !
- testIfPresentIfAbsent
- | d visited |
- visited := false.
- d := Dictionary new.
- d at: 'hello' put: 'world'.
- d at: 'hello' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].
- self assert: visited equals: 'world'.
- d at: 'buy' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].
- self assert: visited.
- !
- testKeys
- | d |
- d := Dictionary new.
- d at: 1 put: 2.
- d at: 2 put: 3.
- d at: 3 put: 4.
- self assert: d keys equals: #(1 2 3)
- !
- testPointKey
- | d |
- d := Dictionary new.
-
- d at: 1@1 put: 'foo'.
- self assert: (d at: 1@1) equals: 'foo'.
- d at: 1@1 put: 'bar'.
- self assert: (d at: 1@1) equals: 'bar'.
- d removeKey: 1@1.
- self assert: (d at: 1@1 ifAbsent: [ 'baz' ]) equals: 'baz'.
- self deny: (d includesKey: 1@1)
- !
- testPrintString
- self
- assert: (Dictionary new
- at:'firstname' put: 'James';
- at:'lastname' put: 'Bond';
- printString)
- equals: 'a Dictionary (''firstname'' -> ''James'' , ''lastname'' -> ''Bond'')'
- !
- testRemoveKey
- | d key |
- d := Dictionary new.
- d at: 1 put: 2.
- d at: 2 put: 3.
- d at: 3 put: 4.
- key := 2.
- self assert: d keys equals: #(1 2 3).
- d removeKey: key.
- self assert: d keys equals: #(1 3).
- self assert: d values equals: #(2 4).
- self deny: (d includesKey: 2)
- !
- testRemoveKeyIfAbsent
- | d key |
- d := Dictionary new.
- d at: 1 put: 2.
- d at: 2 put: 3.
- d at: 3 put: 4.
- key := 2.
- self assert: (d removeKey: key) equals: 3.
- key := 3.
- self assert: (d removeKey: key ifAbsent: [42]) equals: 4.
- key := 'why'.
- self assert: (d removeKey: key ifAbsent: [42] ) equals: 42.
- !
- testSize
- | d |
- d := Dictionary new.
- self assert: d size equals: 0.
- d at: 1 put: 2.
- self assert: d size equals: 1.
- d at: 2 put: 3.
- self assert: d size equals: 2.
- !
- testValues
- | d |
- d := Dictionary new.
- d at: 1 put: 2.
- d at: 2 put: 3.
- d at: 3 put: 4.
- self assert: d values equals: #(2 3 4)
- ! !
- !DictionaryTest class methodsFor: 'accessing'!
- collectionClass
- ^ Dictionary
- ! !
- IndexableCollectionTest subclass: #SequenceableCollectionTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- SequenceableCollectionTest subclass: #ArrayTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !ArrayTest methodsFor: 'tests'!
- testAtIfAbsent
- | array |
- array := #('hello' 'world').
- self assert: (array at: 1) equals: 'hello'.
- self assert: (array at: 2) equals: 'world'.
- self assert: (array at: 2 ifAbsent: ['not found']) equals: 'world'.
- self assert: (array at: 0 ifAbsent: ['not found']) equals: 'not found'.
- self assert: (array at: -10 ifAbsent: ['not found']) equals: 'not found'.
- self assert: (array at: 3 ifAbsent: ['not found']) equals: 'not found'.
- !
- testFirstN
- self assert: ({1. 2. 3. 4. 5} first: 3) equals: {1. 2. 3}
- !
- testIfEmpty
- self assert: ( '' ifEmpty: ['zork'] ) equals: 'zork'
- !
- testPrintString
- | array |
- array := Array new.
- self assert: array printString equals: 'an Array ()'.
- array add: 1; add: 3.
- self assert: array printString equals: 'an Array (1 3)'.
- array add: 'foo'.
- self assert: array printString equals: 'an Array (1 3 ''foo'')'.
- array remove: 1; remove: 3.
- self assert: array printString equals: 'an Array (''foo'')'.
- array addLast: 3.
- self assert: array printString equals: 'an Array (''foo'' 3)'.
- array addLast: 3.
- self assert: array printString equals: 'an Array (''foo'' 3 3)'.
- ! !
- !ArrayTest class methodsFor: 'accessing'!
- collectionClass
- ^ Array
- ! !
- SequenceableCollectionTest subclass: #StringTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !StringTest methodsFor: 'accessing'!
- collection
- ^'hello'
- !
- collectionWithDuplicates
- ^ 'abbaerte'
- ! !
- !StringTest methodsFor: 'tests'!
- testAddRemove
- self should: ['hello' add: 'a'] raise: Error.
- self should: ['hello' remove: 'h'] raise: Error
- !
- testAsArray
- self assert: 'hello' asArray equals: #('h' 'e' 'l' 'l' 'o').
- !
- testAt
- self assert: ('hello' at: 1) equals: 'h'.
- self assert: ('hello' at: 5) equals: 'o'.
- self assert: ('hello' at: 6 ifAbsent: [nil]) equals: nil
- !
- testAtPut
- "String instances are read-only"
- self should: ['hello' at: 1 put: 'a'] raise: Error
- !
- testCollect
- | newCollection |
- newCollection := 'hheelllloo'.
- self
- assertSameContents: (self collection collect: [ :each |
- each, each ])
- as: newCollection
- !
- testCopyWithoutAll
- self
- assert: ('*hello* *world*' copyWithoutAll: '*')
- equals: 'hello world'
- !
- testDetect
- self assert: (self collection detect: [ :each | each = 'h' ]) equals: 'h'.
- self
- should: [ self collection detect: [ :each | each = 6 ] ]
- raise: Error
- !
- testEquality
- self assert: 'hello' equals: 'hello'.
- self deny: 'hello' = 'world'.
-
- "Test for issue 459"
- self deny: 'hello' = (#() at: 1 ifAbsent: [ ]).
- self assert: 'hello' equals: 'hello' yourself.
- self assert: 'hello' yourself equals: 'hello'.
- "test JS falsy value"
- self deny: '' = 0
- !
- testIdentity
- self assert: 'hello' == 'hello'.
- self deny: 'hello' == 'world'.
- self assert: 'hello' == 'hello' yourself.
- self assert: 'hello' yourself == 'hello'.
- "test JS falsy value"
- self deny: '' == 0
- !
- testIncludesSubString
- self assert: ('amber' includesSubString: 'ber').
- self deny: ('amber' includesSubString: 'zork').
- !
- testIndexOf
- self assert: (self collection indexOf: 'e') equals: 2.
- self should: [ self collection indexOf: 999 ] raise: Error.
- self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'
- !
- testJoin
- self assert: (',' join: #('hello' 'world')) equals: 'hello,world'
- !
- testSelect
- | newCollection |
- newCollection := 'o'.
- self
- assertSameContents: (self collection select: [ :each |
- each = 'o' ])
- as: newCollection
- !
- testSize
- self assert: 'smalltalk' size equals: 9.
- self assert: '' size equals: 0
- !
- testStreamContents
- self
- assert: (String streamContents: [ :aStream |
- aStream
- nextPutAll: 'hello'; space;
- nextPutAll: 'world' ])
- equals: 'hello world'
- ! !
- !StringTest class methodsFor: 'accessing'!
- collectionClass
- ^ String
- ! !
- TestCase subclass: #ConsoleTranscriptTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !ConsoleTranscriptTest methodsFor: 'tests'!
- testShow
- | originalTranscript |
- originalTranscript := Transcript current.
- Transcript register: ConsoleTranscript new.
- self shouldnt: [ Transcript show: 'Hello console!!' ] raise: Error.
- self shouldnt: [ Transcript show: console ] raise: Error.
- Transcript register: originalTranscript.
- ! !
- TestCase subclass: #JSObjectProxyTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !JSObjectProxyTest methodsFor: 'accessing'!
- jsObject
- <return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': undefined}>
- ! !
- !JSObjectProxyTest methodsFor: 'tests'!
- testAtIfAbsent
- | testObject |
- testObject := self jsObject.
- self assert: (testObject at: 'abc' ifAbsent: ['Property does not exist']) equals: 'Property does not exist'.
- self assert: (testObject at: 'e' ifAbsent: ['Property does not exist']) equals: nil.
- self assert: (testObject at: 'a' ifAbsent: ['Property does not exist']) equals: 1.
- self assert: (testObject at: 'f' ifAbsent: ['Property does not exist']) equals: nil.
- !
- testAtIfPresent
- | testObject |
-
- testObject := self jsObject.
-
- self assert: (testObject at: 'abc' ifPresent: [ :x | 'hello ',x asString ]) equals: nil.
- self assert: (testObject at: 'e' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello nil'.
- self assert: (testObject at: 'a' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello 1'.
- self assert: (testObject at: 'f' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello nil'.
- !
- testAtIfPresentIfAbsent
- | testObject |
- testObject := self jsObject.
- self assert: (testObject at: 'abc' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'not present'.
- self assert: (testObject at: 'e' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello nil'.
- self assert: (testObject at: 'a' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello 1'.
- self assert: (testObject at: 'f' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello nil'.
- !
- testDNU
- self should: [self jsObject foo] raise: MessageNotUnderstood
- !
- testMessageSend
- self assert: self jsObject a equals: 1.
- self assert: self jsObject b equals: 2.
- self assert: (self jsObject c: 3) equals: 3
- !
- testMethodWithArguments
- self assert: (self jsObject c: 1) equals: 1
- !
- testPrinting
- self assert: self jsObject printString equals: '[object Object]'
- !
- testPropertyThatReturnsEmptyString
- | object |
- object := self jsObject.
- self assert: object d equals: ''.
- object d: 'hello'.
- self assert: object d equals: 'hello'
- !
- testPropertyThatReturnsUndefined
- | object |
- object := self jsObject.
- self shouldnt: [ object e ] raise: MessageNotUnderstood.
- self assert: object e isNil
- !
- testValue
- | testObject |
- testObject := self jsObject.
- self assert: testObject value printString equals: '[object Object]'.
- testObject at: 'value' put: 'aValue'.
- self assert: testObject value equals: 'aValue'
- !
- testYourself
- | object |
- object := self jsObject
- d: 'test';
- yourself.
- self assert: object d equals: 'test'
- ! !
- TestCase subclass: #JavaScriptExceptionTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !JavaScriptExceptionTest methodsFor: 'helpers'!
- throwException
- <throw 'test'>
- ! !
- !JavaScriptExceptionTest methodsFor: 'tests'!
- testCatchingException
- [ self throwException ]
- on: Error
- do: [ :error |
- self assert: error exception = 'test' ]
- !
- testRaisingException
- self should: [ self throwException ] raise: JavaScriptException
- ! !
- TestCase subclass: #MessageSendTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !MessageSendTest methodsFor: 'tests'!
- testValue
- | messageSend |
-
- messageSend := MessageSend new
- receiver: Object new;
- selector: #asString;
- yourself.
-
- self assert: messageSend value equals: 'an Object'
- !
- testValueWithArguments
- | messageSend |
-
- messageSend := MessageSend new
- receiver: 2;
- selector: '+';
- yourself.
-
- self assert: (messageSend value: 3) equals: 5.
-
- self assert: (messageSend valueWithPossibleArguments: #(4)) equals: 6
- ! !
- TestCase subclass: #NumberTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !NumberTest methodsFor: 'tests'!
- testAbs
- self assert: 4 abs equals: 4.
- self assert: -4 abs equals: 4
- !
- testArithmetic
-
- "We rely on JS here, so we won't test complex behavior, just check if
- message sends are corrects"
- self assert: 1.5 + 1 equals: 2.5.
- self assert: 2 - 1 equals: 1.
- self assert: -2 - 1 equals: -3.
- self assert: 12 / 2 equals: 6.
- self assert: 3 * 4 equals: 12.
- "Simple parenthesis and execution order"
- self assert: 1 + 2 * 3 equals: 9.
- self assert: 1 + (2 * 3) equals: 7
- !
- testComparison
- self assert: 3 > 2.
- self assert: 2 < 3.
-
- self deny: 3 < 2.
- self deny: 2 > 3.
- self assert: 3 >= 3.
- self assert: 3.1 >= 3.
- self assert: 3 <= 3.
- self assert: 3 <= 3.1
- !
- testCopying
- self assert: 1 copy == 1.
- self assert: 1 deepCopy == 1
- !
- testEquality
- self assert: (1 = 1).
- self assert: (0 = 0).
- self deny: (1 = 0).
- self assert: (1 yourself = 1).
- self assert: (1 = 1 yourself).
- self assert: (1 yourself = 1 yourself).
-
- self deny: 0 = false.
- self deny: false = 0.
- self deny: '' = 0.
- self deny: 0 = ''
- !
- testHexNumbers
- self assert: 16r9 equals: 9.
- self assert: 16rA truncated equals: 10.
- self assert: 16rB truncated equals: 11.
- self assert: 16rC truncated equals: 12.
- self assert: 16rD truncated equals: 13.
- self assert: 16rE truncated equals: 14.
- self assert: 16rF truncated equals: 15
- !
- testIdentity
- self assert: 1 == 1.
- self assert: 0 == 0.
- self deny: 1 == 0.
- self assert: 1 yourself == 1.
- self assert: 1 == 1 yourself.
- self assert: 1 yourself == 1 yourself.
-
- self deny: 1 == 2
- !
- testInvalidHexNumbers
- self should: [16rG] raise: MessageNotUnderstood.
- self should: [16rg] raise: MessageNotUnderstood.
- self should: [16rH] raise: MessageNotUnderstood.
- self should: [16rh] raise: MessageNotUnderstood.
- self should: [16rI] raise: MessageNotUnderstood.
- self should: [16ri] raise: MessageNotUnderstood.
- self should: [16rJ] raise: MessageNotUnderstood.
- self should: [16rj] raise: MessageNotUnderstood.
- self should: [16rK] raise: MessageNotUnderstood.
- self should: [16rk] raise: MessageNotUnderstood.
- self should: [16rL] raise: MessageNotUnderstood.
- self should: [16rl] raise: MessageNotUnderstood.
- self should: [16rM] raise: MessageNotUnderstood.
- self should: [16rm] raise: MessageNotUnderstood.
- self should: [16rN] raise: MessageNotUnderstood.
- self should: [16rn] raise: MessageNotUnderstood.
- self should: [16rO] raise: MessageNotUnderstood.
- self should: [16ro] raise: MessageNotUnderstood.
- self should: [16rP] raise: MessageNotUnderstood.
- self should: [16rp] raise: MessageNotUnderstood.
- self should: [16rQ] raise: MessageNotUnderstood.
- self should: [16rq] raise: MessageNotUnderstood.
- self should: [16rR] raise: MessageNotUnderstood.
- self should: [16rr] raise: MessageNotUnderstood.
- self should: [16rS] raise: MessageNotUnderstood.
- self should: [16rs] raise: MessageNotUnderstood.
- self should: [16rT] raise: MessageNotUnderstood.
- self should: [16rt] raise: MessageNotUnderstood.
- self should: [16rU] raise: MessageNotUnderstood.
- self should: [16ru] raise: MessageNotUnderstood.
- self should: [16rV] raise: MessageNotUnderstood.
- self should: [16rv] raise: MessageNotUnderstood.
- self should: [16rW] raise: MessageNotUnderstood.
- self should: [16rw] raise: MessageNotUnderstood.
- self should: [16rX] raise: MessageNotUnderstood.
- self should: [16rx] raise: MessageNotUnderstood.
- self should: [16rY] raise: MessageNotUnderstood.
- self should: [16ry] raise: MessageNotUnderstood.
- self should: [16rZ] raise: MessageNotUnderstood.
- self should: [16rz] raise: MessageNotUnderstood.
- self should: [16rABcdEfZ] raise: MessageNotUnderstood.
- !
- testMinMax
-
- self assert: (2 max: 5) equals: 5.
- self assert: (2 min: 5) equals: 2
- !
- testNegated
- self assert: 3 negated equals: -3.
- self assert: -3 negated equals: 3
- !
- testPrintShowingDecimalPlaces
- self assert: (23 printShowingDecimalPlaces: 2) equals: '23.00'.
- self assert: (23.5698 printShowingDecimalPlaces: 2) equals: '23.57'.
- self assert: (234.567 negated printShowingDecimalPlaces: 5) equals: '-234.56700'.
- self assert: (23.4567 printShowingDecimalPlaces: 0) equals: '23'.
- self assert: (23.5567 printShowingDecimalPlaces: 0) equals: '24'.
- self assert: (23.4567 negated printShowingDecimalPlaces: 0) equals: '-23'.
- self assert: (23.5567 negated printShowingDecimalPlaces: 0) equals: '-24'.
- self assert: (100000000 printShowingDecimalPlaces: 1) equals: '100000000.0'.
- self assert: (0.98 printShowingDecimalPlaces: 5) equals: '0.98000'.
- self assert: (0.98 negated printShowingDecimalPlaces: 2) equals: '-0.98'.
- self assert: (2.567 printShowingDecimalPlaces: 2) equals: '2.57'.
- self assert: (-2.567 printShowingDecimalPlaces: 2) equals: '-2.57'.
- self assert: (0 printShowingDecimalPlaces: 2) equals: '0.00'.
- !
- testRounded
-
- self assert: 3 rounded equals: 3.
- self assert: 3.212 rounded equals: 3.
- self assert: 3.51 rounded equals: 4
- !
- testSqrt
-
- self assert: 4 sqrt equals: 2.
- self assert: 16 sqrt equals: 4
- !
- testSquared
-
- self assert: 4 squared equals: 16
- !
- testTimesRepeat
- | i |
- i := 0.
- 0 timesRepeat: [i := i + 1].
- self assert: i equals: 0.
- 5 timesRepeat: [i := i + 1].
- self assert: i equals: 5
- !
- testTo
- self assert: (1 to: 5) equals: #(1 2 3 4 5)
- !
- testToBy
- self assert: (0 to: 6 by: 2) equals: #(0 2 4 6).
- self should: [1 to: 4 by: 0] raise: Error
- !
- testTruncated
-
- self assert: 3 truncated equals: 3.
- self assert: 3.212 truncated equals: 3.
- self assert: 3.51 truncated equals: 3
- ! !
- Object subclass: #ObjectMock
- instanceVariableNames: 'foo bar'
- package: 'Kernel-Tests'!
- !ObjectMock commentStamp!
- ObjectMock is there only to perform tests on classes.!
- !ObjectMock methodsFor: 'not yet classified'!
- foo
- ^foo
- !
- foo: anObject
- foo := anObject
- ! !
- TestCase subclass: #ObjectTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !ObjectTest methodsFor: 'tests'!
- notDefined
- <return undefined;>
- !
- testBasicAccess
- | o |
- o := Object new.
- o basicAt: 'a' put: 1.
- self assert: (o basicAt: 'a') equals: 1.
- self assert: (o basicAt: 'b') equals: nil
- !
- testBasicPerform
- | o |
- o := Object new.
- o basicAt: 'func' put: ['hello'].
- o basicAt: 'func2' put: [:a | a + 1].
- self assert: (o basicPerform: 'func') equals: 'hello'.
- self assert: (o basicPerform: 'func2' withArguments: #(3)) equals: 4
- !
- testDNU
- self should: [Object new foo] raise: MessageNotUnderstood
- !
- testEquality
- | o |
- o := Object new.
- self deny: o = Object new.
- self assert: (o = o).
- self assert: (o yourself = o).
- self assert: (o = o yourself)
- !
- testHalt
- self should: [Object new halt] raise: Error
- !
- testIdentity
- | o |
- o := Object new.
- self deny: o == Object new.
- self assert: o == o.
- self assert: o yourself == o.
- self assert: o == o yourself
- !
- testIfNil
- self deny: Object new isNil.
- self deny: (Object new ifNil: [true]) = true.
- self assert: (Object new ifNotNil: [true]) equals: true.
- self assert: (Object new ifNil: [false] ifNotNil: [true]) equals: true.
- self assert: (Object new ifNotNil: [true] ifNil: [false]) equals: true
- !
- testInstVars
- | o |
- o := ObjectMock new.
- self assert: (o instVarAt: #foo) equals: nil.
- o instVarAt: #foo put: 1.
- self assert: (o instVarAt: #foo) equals: 1.
- self assert: (o instVarAt: 'foo') equals: 1
- !
- testNilUndefined
- "nil in Smalltalk is the undefined object in JS"
- self assert: self notDefined equals: nil
- !
- testYourself
- | o |
- o := ObjectMock new.
- self assert: o yourself == o
- !
- testidentityHash
- | o1 o2 |
-
- o1 := Object new.
- o2 := Object new.
- self assert: o1 identityHash == o1 identityHash.
- self deny: o1 identityHash == o2 identityHash
- ! !
- TestCase subclass: #PackageTest
- instanceVariableNames: 'zorkPackage grulPackage backUpCommitPathJs backUpCommitPathSt'
- package: 'Kernel-Tests'!
- !PackageTest methodsFor: 'running'!
- setUp
- backUpCommitPathJs := Package defaultCommitPathJs.
- backUpCommitPathSt := Package defaultCommitPathSt.
- Package resetCommitPaths.
- zorkPackage := Package new name: 'Zork'.
- grulPackage := Package new
- name: 'Grul';
- commitPathJs: 'server/grul/js';
- commitPathSt: 'grul/st';
- yourself
- !
- tearDown
- Package
- defaultCommitPathJs: backUpCommitPathJs;
- defaultCommitPathSt: backUpCommitPathSt
- ! !
- !PackageTest methodsFor: 'tests'!
- testGrulCommitPathJsShouldBeServerGrulJs
- self assert: grulPackage commitPathJs equals: 'server/grul/js'
- !
- testGrulCommitPathStShouldBeGrulSt
- self assert: grulPackage commitPathSt equals: 'grul/st'
- !
- testZorkCommitPathJsShouldBeJs
- self assert: zorkPackage commitPathJs equals: 'js'
- !
- testZorkCommitPathStShouldBeSt
- self assert: zorkPackage commitPathSt equals: 'st'
- ! !
- PackageTest subclass: #PackageWithDefaultCommitPathChangedTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !PackageWithDefaultCommitPathChangedTest methodsFor: 'running'!
- setUp
- super setUp.
- Package
- defaultCommitPathJs: 'javascripts/';
- defaultCommitPathSt: 'smalltalk/'.
- ! !
- !PackageWithDefaultCommitPathChangedTest methodsFor: 'tests'!
- testGrulCommitPathJsShouldBeServerGrulJs
- self assert: grulPackage commitPathJs equals: 'server/grul/js'
- !
- testGrulCommitPathStShouldBeGrulSt
- self assert: grulPackage commitPathSt equals: 'grul/st'
- !
- testZorkCommitPathJsShouldBeJavascript
- self assert: zorkPackage commitPathJs equals: 'javascripts/'
- !
- testZorkCommitPathStShouldBeSmalltalk
- self assert: zorkPackage commitPathSt equals: 'smalltalk/'
- ! !
- !PackageWithDefaultCommitPathChangedTest class methodsFor: 'accessing'!
- shouldInheritSelectors
- ^ false
- ! !
- TestCase subclass: #PointTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !PointTest methodsFor: 'tests'!
- testAccessing
- self assert: (Point x: 3 y: 4) x equals: 3.
- self assert: (Point x: 3 y: 4) y equals: 4.
- self assert: (Point new x: 3) x equals: 3.
- self assert: (Point new y: 4) y equals: 4
- !
- testArithmetic
- self assert: 3@4 * (3@4 ) equals: (Point x: 9 y: 16).
- self assert: 3@4 + (3@4 ) equals: (Point x: 6 y: 8).
- self assert: 3@4 - (3@4 ) equals: (Point x: 0 y: 0).
- self assert: 6@8 / (3@4 ) equals: (Point x: 2 y: 2)
- !
- testAt
- self assert: 3@4 equals: (Point x: 3 y: 4)
- !
- testEgality
- self assert: (3@4 = (3@4)).
- self deny: 3@5 = (3@6)
- !
- testTranslateBy
- self assert: (3@3 translateBy: 0@1) equals: 3@4.
- self assert: (3@3 translateBy: 0@1 negated) equals: 3@2.
- self assert: (3@3 translateBy: 2@3) equals: 5@6.
- self assert: (3@3 translateBy: 3 negated @0) equals: 0@3.
- ! !
- TestCase subclass: #RandomTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !RandomTest methodsFor: 'tests'!
- textNext
- 10000 timesRepeat: [
- | current next |
- next := Random new next.
- self assert: (next >= 0).
- self assert: (next < 1).
- self deny: current = next.
- next = current]
- ! !
- TestCase subclass: #SetTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !SetTest methodsFor: 'tests'!
- testAddRemove
- | set |
- set := Set new.
-
- self assert: set isEmpty.
- set add: 3.
- self assert: (set includes: 3).
- set add: 5.
- self assert: (set includes: 5).
- set remove: 3.
- self deny: (set includes: 3)
- !
- testAt
- self should: [Set new at: 1 put: 2] raise: Error
- !
- testCollect
- self assert: (#(5 6 8) asSet collect: [ :x | x \\ 3 ]) equals: #(0 2) asSet
- !
- testComparing
- self assert: #(0 2) asSet equals: #(0 2) asSet.
- self assert: #(2 0) asSet equals: #(0 2) asSet.
- self deny: #(0 2 3) asSet = #(0 2) asSet.
- self deny: #(1 2) asSet = #(0 2) asSet
- !
- testPrintString
- | set |
- set := Set new.
- self assert: set printString equals: 'a Set ()'.
- set add: 1; add: 3.
- self assert: set printString equals: 'a Set (1 3)'.
- set add: 'foo'.
- self assert: set printString equals: 'a Set (1 3 ''foo'')'.
- set remove: 1; remove: 3.
- self assert: set printString equals: 'a Set (''foo'')'.
- set add: 3.
- self assert: set printString equals: 'a Set (''foo'' 3)'.
- set add: 3.
- self assert: set printString equals: 'a Set (''foo'' 3)'
- !
- testSize
- self assert: Set new size equals: 0.
- self assert: (Set withAll: #(1 2 3 4)) size equals: 4.
- self assert: (Set withAll: #(1 1 1 1)) size equals: 1
- !
- testUnicity
- | set |
- set := Set new.
- set add: 21.
- set add: 'hello'.
- set add: 21.
- self assert: set size equals: 2.
-
- set add: 'hello'.
- self assert: set size equals: 2.
- self assert: set asArray equals: #(21 'hello')
- ! !
- TestCase subclass: #StreamTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !StreamTest methodsFor: 'accessing'!
- collectionClass
- ^ self class collectionClass
- !
- newCollection
- ^ self collectionClass new
- !
- newStream
- ^ self collectionClass new stream
- ! !
- !StreamTest methodsFor: 'tests'!
- testAtStartAtEnd
- | stream |
-
- stream := self newStream.
- self assert: stream atStart.
- self assert: stream atEnd.
-
- stream nextPutAll: self newCollection.
- self assert: stream atEnd.
- self deny: stream atStart.
-
- stream position: 1.
- self deny: stream atEnd.
- self deny: stream atStart
- !
- testContents
- | stream |
-
- stream := self newStream.
- stream nextPutAll: self newCollection.
-
- self assert: stream contents equals: self newCollection
- !
- testIsEmpty
- | stream |
-
- stream := self newStream.
- self assert: stream isEmpty.
-
- stream nextPutAll: self newCollection.
- self deny: stream isEmpty
- !
- testPosition
- | collection stream |
-
- collection := self newCollection.
- stream := self newStream.
-
- stream nextPutAll: collection.
- self assert: stream position equals: collection size.
-
- stream position: 0.
- self assert: stream position equals: 0.
-
- stream next.
- self assert: stream position equals: 1.
-
- stream next.
- self assert: stream position equals: 2
- !
- testReading
- | stream collection |
-
- collection := self newCollection.
- stream := self newStream.
-
- stream
- nextPutAll: collection;
- position: 0.
-
- collection do: [ :each |
- self assert: stream next equals: each ].
-
- self assert: stream next isNil
- !
- testStreamContents
- !
- testWrite
- | stream collection |
-
- collection := self newCollection.
- stream := self newStream.
-
- collection do: [ :each | stream << each ].
- self assert: stream contents equals: collection
- !
- testWriting
- | stream collection |
-
- collection := self newCollection.
- stream := self newStream.
-
- collection do: [ :each | stream nextPut: each ].
- self assert: stream contents equals: collection.
-
- stream := self newStream.
- stream nextPutAll: collection.
- self assert: stream contents equals: collection
- ! !
- !StreamTest class methodsFor: 'accessing'!
- collectionClass
- ^ nil
- ! !
- !StreamTest class methodsFor: 'testing'!
- isAbstract
- ^ self collectionClass isNil
- ! !
- StreamTest subclass: #ArrayStreamTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !ArrayStreamTest methodsFor: 'accessing'!
- newCollection
- ^ { true. 1. 3@4. 'foo' }
- ! !
- !ArrayStreamTest class methodsFor: 'accessing'!
- collectionClass
- ^ Array
- ! !
- StreamTest subclass: #StringStreamTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !StringStreamTest methodsFor: 'accessing'!
- newCollection
- ^ 'hello world'
- ! !
- !StringStreamTest class methodsFor: 'accessing'!
- collectionClass
- ^ String
- ! !
- TestCase subclass: #UndefinedTest
- instanceVariableNames: ''
- package: 'Kernel-Tests'!
- !UndefinedTest methodsFor: 'tests'!
- testCopying
- self assert: nil copy equals: nil
- !
- testDeepCopy
- self assert: nil deepCopy = nil
- !
- testIfNil
- self assert: (nil ifNil: [true]) equals: true.
- self deny: (nil ifNotNil: [true]) = true.
- self assert: (nil ifNil: [true] ifNotNil: [false]) equals: true.
- self deny: (nil ifNotNil: [true] ifNil: [false]) = true
- !
- testIsNil
- self assert: nil isNil.
- self deny: nil notNil.
- ! !
|