Add ascii encoding

This commit is contained in:
2024-07-25 16:30:02 +02:00
parent 7bcc02c66d
commit 161ff14189
5 changed files with 97 additions and 0 deletions

13
encoding/ascii.go Normal file
View File

@@ -0,0 +1,13 @@
package encoding
import "bytes"
type ASCIICoder struct{}
func (c *ASCIICoder) Encode(s string, buf *bytes.Buffer) {
buf.WriteString(s)
}
func (c *ASCIICoder) Decode(buf *bytes.Buffer) string {
return buf.String()
}

58
encoding/ascii_test.go Normal file
View File

@@ -0,0 +1,58 @@
package encoding
import (
"bytes"
"testing"
)
func TestASCIIEncodeSimpleASCIIString(t *testing.T) {
coder := &ASCIICoder{}
var buf bytes.Buffer
input := "Hello, World!"
expected := []byte{72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33}
coder.Encode(input, &buf)
if !bytes.Equal(buf.Bytes(), expected) {
t.Errorf("Expected %v, but got %v", expected, buf.Bytes())
}
}
func TestASCIIDecodeSimpleASCIIString(t *testing.T) {
coder := &ASCIICoder{}
var buf bytes.Buffer
input := []byte{72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33}
expected := "Hello, World!"
buf.Write(input)
output := coder.Decode(&buf)
if output != expected {
t.Errorf("Expected %v, but got %v", expected, output)
}
}
func TestASCIIEncodeEmptyString(t *testing.T) {
coder := &ASCIICoder{}
var buf bytes.Buffer
input := ""
expected := []byte{}
coder.Encode(input, &buf)
if !bytes.Equal(buf.Bytes(), expected) {
t.Errorf("Expected %v, but got %v", expected, buf.Bytes())
}
}
func TestASCIIDecodeEmptyString(t *testing.T) {
coder := &ASCIICoder{}
buf := bytes.NewBuffer([]byte{})
expected := ""
output := coder.Decode(buf)
if output != expected {
t.Errorf("Expected %v, but got %v", expected, output)
}
}

5
encoding/charset.json Normal file
View File

@@ -0,0 +1,5 @@
{
"ucs2": {
"link": "http://www.columbia.edu/kermit/ucs2.html"
}
}

8
encoding/coder.go Normal file
View File

@@ -0,0 +1,8 @@
package encoding
import "bytes"
type Coder interface {
Encode(s string, buf *bytes.Buffer)
Decode(buf *bytes.Buffer) string
}

13
encoding/ucs2.go Normal file
View File

@@ -0,0 +1,13 @@
package encoding
import "bytes"
type UCS2Coder struct{}
func (c *UCS2Coder) Encode(s string, buf *bytes.Buffer) {
panic("UCS2 not implemented yet")
}
func (c *UCS2Coder) Decode(buf *bytes.Buffer) string {
panic("UCS2 not implemented yet")
}