mbeckerle commented on a change in pull request #341: DAFFODIL-2293 URL: https://github.com/apache/incubator-daffodil/pull/341#discussion_r399248682
########## File path: daffodil-io/src/test/scala/org/apache/daffodil/io/TestNonByteSizedCharsetEncoders8Bit.scala ########## @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.daffodil.io + +import java.nio.ByteBuffer +import java.nio.CharBuffer + +import org.junit.Assert._ +import org.junit.Test + +import org.apache.daffodil.processors.charset.CharsetUtils +import org.apache.daffodil.util.Misc + +class TestNonByteSizedCharsetEncoders8Bit { + + @Test def test3BitMSBF_01(): Unit = { + val cs = CharsetUtils.getCharset("X-DFDL-ISO-88591-8-BIT-PACKED-MSB-FIRST") + val encoder = cs.newEncoder() + val cb = CharBuffer.wrap("01234567") + val expectedBytes = Misc.bits2Bytes("00110000 00110001 00110010 00110011 00110100 00110101 00110110 00110111").toList + val bb = ByteBuffer.allocate(8) + val res = encoder.encode(cb, bb, false) + assertTrue(res.isUnderflow()) + bb.flip() + val actualBytes = bb.array().toList + assertEquals(expectedBytes, actualBytes) + } + + @Test def test3BitMSBF_02(): Unit = { Review comment: Change name to "8" Bit. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
