compiler/tests/PPCGuardTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 05 Nov 2014 23:05:19 +0000
changeset 414 0eaf09920532
parent 401 538267cab6ec
child 415 f30eb7ea54cd
permissions -rw-r--r--
Merged JK's work on PetitCompiler Name: PetitCompiler-JanKurs.57 Author: JanKurs Time: 05-11-2014, 05:10:47 AM UUID: 4c625efe-77fd-465d-bd63-72ead0b5d3ba Name: PetitCompiler-Tests-JanVrany.13 Author: JanVrany Time: 05-11-2014, 09:31:07 AM UUID: 189ae287-6bc1-40ba-8458-b8392c4260a0

"{ Package: 'stx:goodies/petitparser/compiler/tests' }"

TestCase subclass:#PPCGuardTest
	instanceVariableNames:'guard compiler'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Tests-Core'
!


!PPCGuardTest methodsFor:'as yet unclassified'!

setUp
	super setUp.
	compiler := PPCMockCompiler new.
!

testCompiling
	guard := PPCGuard new initializeFor: ($a asParser / $b asParser) asCompilerTree.
	guard id: #foo.
	guard compileGuard: compiler.
	
	self assert: compiler lines size = 1.
	self assert: compiler lines first = '(foo at: context peek asInteger)'.
!

testCompiling2
	guard := PPCGuard new initializeFor: (#letter asParser / #digit asParser) asCompilerTree.
	guard id: #foo.
	guard compileGuard: compiler.
	
	self assert: compiler lines size = 1.
	self assert: compiler lines first = '(context peek isAlphaNumeric)'.
!

testCompiling3
	guard := PPCGuard new initializeFor: ($a asParser, (#letter asParser / #digit asParser)) asCompilerTree.
	guard id: #foo.
	guard compileGuard: compiler.
	
	self assert: compiler lines size = 1.
	self assert: compiler lines first = ('(context peek = ', $a printString ,')').
!

testCompiling4
	guard := PPCGuard new initializeFor: ('foo' asParser / 'foobar' asParser) asCompilerTree.
	guard id: #foo.
	guard compileGuard: compiler.
	
	self assert: compiler lines size = 1.
	self assert: compiler lines first = ('(context peek = ', $f printString ,')').
!

testMakesSense
	guard := PPCGuard new initializeFor: #letter asParser.
	self assert: guard makesSense.
	
	guard := PPCGuard new initializeFor: nil asParser asCompilerTree.
	self assert: guard makesSense not.
	
	guard := PPCGuard new initializeFor: (#letter asParser / nil asParser) asCompilerTree.
	self assert: guard makesSense not.
	
	guard := PPCGuard new initializeFor: (#letter asParser / #digit asParser) asCompilerTree.
	self assert: guard makesSense.

	guard := PPCGuard new initializeFor: (#letter asParser / #digit asParser star) asCompilerTree.
	self assert: guard makesSense not.
!

testMessage
	guard := PPCGuard new initializeFor: #letter asParser asCompilerTree.
	self assert: (guard message = #isLetter).
	self assert: (guard message = #isAlphaNumeric) not.
	
	guard := PPCGuard new initializeFor: #word asParser asCompilerTree.
	self assert: (guard message = #isAlphaNumeric).
	
	guard := PPCGuard new initializeFor: #digit asParser asCompilerTree.
	self assert: (guard message = #isDigit).
	
	guard := PPCGuard new initializeFor: 'a' asParser asCompilerTree.
	self assert: (guard message = #isDigit) not.
	self assert: (guard message = #isLetter) not.
	self assert: (guard message = #isAlphaNumeric) not.
	
!

testMessage2
	guard := PPCGuard new initializeFor: (#letter asParser / #digit asParser) asCompilerTree.
	self assert: guard message = #isAlphaNumeric
	
!

testNot
	guard := PPCGuard new initializeFor: ('foo' asParser not, 'fee' asParser) asCompilerTree.
	self assert: (guard classification at: $f asInteger).
!

testNot2
	guard := PPCGuard new initializeFor: ('foo' asParser not, 'fee' asParser) asCompilerTree optimizeTree.
	self assert: (guard classification at: $f asInteger).
!

testTestMessage
	guard := PPCGuard new initializeFor: #letter asParser asCompilerTree.
	self assert: (guard testMessage: #isLetter).
	self assert: (guard testMessage: #isAlphaNumeric) not.
	
	guard := PPCGuard new initializeFor: #word asParser asCompilerTree.
	self assert: (guard testMessage: #isAlphaNumeric).
	
	guard := PPCGuard new initializeFor: #digit asParser asCompilerTree.
	self assert: (guard testMessage: #isDigit).
	
	guard := PPCGuard new initializeFor: 'a' asParser asCompilerTree.
	self assert: (guard testMessage: #isDigit) not.
	self assert: (guard testMessage: #isLetter) not.
	self assert: (guard testMessage: #isAlphaNumeric) not.
	
!

testTestSingleCharacter
	guard := PPCGuard new initializeFor: $a asParser asCompilerTree.
	self assert: guard testSingleCharacter.
	
	guard := PPCGuard new initializeFor: 'foo' asParser asCompilerTree.
	self assert: guard testSingleCharacter.
	
	guard := PPCGuard new initializeFor: ('foo' asParser / 'bar' asParser) asCompilerTree.
	self assert: guard testSingleCharacter not.

	guard := PPCGuard new initializeFor: ($a asParser, (#letter asParser / #digit asParser)) asCompilerTree.
	self assert: guard testSingleCharacter.
	
	guard := PPCGuard new initializeFor: ('foo' asParser / 'fee' asParser) asCompilerTree.
	self assert: guard testSingleCharacter.
! !

!PPCGuardTest class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !