Failed
windows-64 / Tests-windows-64 / Windows64.Zinc.Tests.ZnServerTest.testGetUnicodeUtf8 (from Zinc-Tests)
Failing for the past 1 build
(Since
#659 )

Stacktrace
ZnUnknownHttpVersion [ (ZnUnknownHttpVersion version: string) signal ] in ZnStatusLine>>version: Array(Collection)>>detect:ifFound:ifNone: Array(Collection)>>detect:ifNone: ZnStatusLine>>version: ZnStatusLine>>readFrom: ZnStatusLine class>>readFrom: ZnResponse>>readHeaderFrom: ZnResponse(ZnMessage)>>readFrom: ZnResponse class(ZnMessage class)>>readFrom: [ :stream | ZnResponse readFrom: stream ] in [ [ :stream | ZnResponse readFrom: stream ] ] in ZnClient>>reader [ self reader value: connection ] in [ response := (#(HEAD CONNECT) includes: request method) ifTrue: [ ZnResponse readHeaderFrom: connection ] ifFalse: [ self streaming ifTrue: [ ZnResponse readStreamingFrom: connection ] ifFalse: [ self withMaximumEntitySizeDo: [ self reader value: connection ] ] ] ] in [ self withDefaultCharacterEncoderDo: [ response := (#(HEAD CONNECT) includes: request method) ifTrue: [ ZnResponse readHeaderFrom: connection ] ifFalse: [ self streaming ifTrue: [ ZnResponse readStreamingFrom: connection ] ifFalse: [ self withMaximumEntitySizeDo: [ self reader value: connection ] ] ] ] ] in ZnClient>>readResponse True>>ifTrue:ifFalse: ZnClient>>withMaximumEntitySizeDo: [ response := (#(HEAD CONNECT) includes: request method) ifTrue: [ ZnResponse readHeaderFrom: connection ] ifFalse: [ self streaming ifTrue: [ ZnResponse readStreamingFrom: connection ] ifFalse: [ self withMaximumEntitySizeDo: [ self reader value: connection ] ] ] ] in [ self withDefaultCharacterEncoderDo: [ response := (#(HEAD CONNECT) includes: request method) ifTrue: [ ZnResponse readHeaderFrom: connection ] ifFalse: [ self streaming ifTrue: [ ZnResponse readStreamingFrom: connection ] ifFalse: [ self withMaximumEntitySizeDo: [ self reader value: connection ] ] ] ] ] in ZnClient>>readResponse True>>ifTrue:ifFalse: ZnClient>>withDefaultCharacterEncoderDo: [ self withDefaultCharacterEncoderDo: [ response := (#(HEAD CONNECT) includes: request method) ifTrue: [ ZnResponse readHeaderFrom: connection ] ifFalse: [ self streaming ifTrue: [ ZnResponse readStreamingFrom: connection ] ifFalse: [ self withMaximumEntitySizeDo: [ self reader value: connection ] ] ] ] ] in ZnClient>>readResponse True>>ifTrue:ifFalse: ZnClient>>withMaximumNumberOfDictionaryEntriesDo: ZnClient>>readResponse ZnClient>>executeRequestResponse [ self executeRequestResponse ] in ZnClient>>getConnectionAndExecute FullBlockClosure(BlockClosure)>>ensure: ZnClient>>getConnectionAndExecute ZnClient>>executeWithRedirectsRemaining: [ self executeWithRedirectsRemaining: self maxNumberOfRedirects ] in ZnClient>>executeWithRetriesRemaining: FullBlockClosure(BlockClosure)>>on:do: ZnClient>>executeWithRetriesRemaining: [ self executeWithRetriesRemaining: self numberOfRetries ] in [ [ self executeWithRetriesRemaining: self numberOfRetries ] on: Error do: self ifFailBlock ] in ZnClient>>executeWithTimeout FullBlockClosure(BlockClosure)>>on:do: [ [ self executeWithRetriesRemaining: self numberOfRetries ] on: Error do: self ifFailBlock ] in ZnClient>>executeWithTimeout [ ^ block value ] in ZnClient>>withTimeoutDo: [ activeProcess psValueAt: index put: anObject. aBlock value ] in ZnConnectionTimeout(DynamicVariable)>>value:during: FullBlockClosure(BlockClosure)>>ensure: ZnConnectionTimeout(DynamicVariable)>>value:during: ZnConnectionTimeout class(DynamicVariable class)>>value:during: ZnClient>>withTimeoutDo: ZnClient>>executeWithTimeout [ result := self executeWithTimeout ] in ZnClient>>execute [ ^ block value ] in ZnClient>>withProgressDo: [ activeProcess psValueAt: index put: anObject. aBlock value ] in ZnSignalProgress(DynamicVariable)>>value:during: FullBlockClosure(BlockClosure)>>ensure: ZnSignalProgress(DynamicVariable)>>value:during: ZnSignalProgress class(DynamicVariable class)>>value:during: ZnClient>>withProgressDo: ZnClient>>execute ZnClient>>get ZnEasy class>>get: [ :server | | response html | response := ZnEasy get: (server localUrl addPathSegment: 'unicode'; yourself). self assert: response contentType equals: ZnMimeType textHtml. self assert: response statusLine code equals: 200. self assert: response contentType isCharSetUTF8. html := response entity contents. self assert: (html includesSubstring: 'Unicode'). 0 to: 16r024F do: [ :each | self assert: (html includes: each asCharacter) ] ] in ZnServerTest>>testGetUnicodeUtf8 FullBlockClosure(BlockClosure)>>cull: [ server start. self assert: server isRunning & server isListening description: ('Failed to start server on port {1}. Is there one already?' format: { server port }). block cull: server ] in ZnServerTest>>withServerDo: FullBlockClosure(BlockClosure)>>ensure: ZnServerTest>>withServerDo: ZnServerTest>>testGetUnicodeUtf8 ZnServerTest(TestCase)>>performTest