|
| 1 | +import { findDoubleNewlineIndex, LineDecoder } from 'openai/internal/decoders/line'; |
| 2 | + |
| 3 | +function decodeChunks(chunks: string[], { flush }: { flush: boolean } = { flush: false }): string[] { |
| 4 | + const decoder = new LineDecoder(); |
| 5 | + const lines: string[] = []; |
| 6 | + for (const chunk of chunks) { |
| 7 | + lines.push(...decoder.decode(chunk)); |
| 8 | + } |
| 9 | + |
| 10 | + if (flush) { |
| 11 | + lines.push(...decoder.flush()); |
| 12 | + } |
| 13 | + |
| 14 | + return lines; |
| 15 | +} |
| 16 | + |
| 17 | +describe('line decoder', () => { |
| 18 | + test('basic', () => { |
| 19 | + // baz is not included because the line hasn't ended yet |
| 20 | + expect(decodeChunks(['foo', ' bar\nbaz'])).toEqual(['foo bar']); |
| 21 | + }); |
| 22 | + |
| 23 | + test('basic with \\r', () => { |
| 24 | + expect(decodeChunks(['foo', ' bar\r\nbaz'])).toEqual(['foo bar']); |
| 25 | + expect(decodeChunks(['foo', ' bar\r\nbaz'], { flush: true })).toEqual(['foo bar', 'baz']); |
| 26 | + }); |
| 27 | + |
| 28 | + test('trailing new lines', () => { |
| 29 | + expect(decodeChunks(['foo', ' bar', 'baz\n', 'thing\n'])).toEqual(['foo barbaz', 'thing']); |
| 30 | + }); |
| 31 | + |
| 32 | + test('trailing new lines with \\r', () => { |
| 33 | + expect(decodeChunks(['foo', ' bar', 'baz\r\n', 'thing\r\n'])).toEqual(['foo barbaz', 'thing']); |
| 34 | + }); |
| 35 | + |
| 36 | + test('escaped new lines', () => { |
| 37 | + expect(decodeChunks(['foo', ' bar\\nbaz\n'])).toEqual(['foo bar\\nbaz']); |
| 38 | + }); |
| 39 | + |
| 40 | + test('escaped new lines with \\r', () => { |
| 41 | + expect(decodeChunks(['foo', ' bar\\r\\nbaz\n'])).toEqual(['foo bar\\r\\nbaz']); |
| 42 | + }); |
| 43 | + |
| 44 | + test('\\r & \\n split across multiple chunks', () => { |
| 45 | + expect(decodeChunks(['foo\r', '\n', 'bar'], { flush: true })).toEqual(['foo', 'bar']); |
| 46 | + }); |
| 47 | + |
| 48 | + test('single \\r', () => { |
| 49 | + expect(decodeChunks(['foo\r', 'bar'], { flush: true })).toEqual(['foo', 'bar']); |
| 50 | + }); |
| 51 | + |
| 52 | + test('double \\r', () => { |
| 53 | + expect(decodeChunks(['foo\r', 'bar\r'], { flush: true })).toEqual(['foo', 'bar']); |
| 54 | + expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); |
| 55 | + // implementation detail that we don't yield the single \r line until a new \r or \n is encountered |
| 56 | + expect(decodeChunks(['foo\r', '\r', 'bar'], { flush: false })).toEqual(['foo']); |
| 57 | + }); |
| 58 | + |
| 59 | + test('double \\r then \\r\\n', () => { |
| 60 | + expect(decodeChunks(['foo\r', '\r', '\r', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); |
| 61 | + expect(decodeChunks(['foo\n', '\n', '\n', 'bar', '\n'])).toEqual(['foo', '', '', 'bar']); |
| 62 | + }); |
| 63 | + |
| 64 | + test('double newline', () => { |
| 65 | + expect(decodeChunks(['foo\n\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); |
| 66 | + expect(decodeChunks(['foo', '\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); |
| 67 | + expect(decodeChunks(['foo\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); |
| 68 | + expect(decodeChunks(['foo', '\n', '\n', 'bar'], { flush: true })).toEqual(['foo', '', 'bar']); |
| 69 | + }); |
| 70 | + |
| 71 | + test('multi-byte characters across chunks', () => { |
| 72 | + const decoder = new LineDecoder(); |
| 73 | + |
| 74 | + // bytes taken from the string 'известни' and arbitrarily split |
| 75 | + // so that some multi-byte characters span multiple chunks |
| 76 | + expect(decoder.decode(new Uint8Array([0xd0]))).toHaveLength(0); |
| 77 | + expect(decoder.decode(new Uint8Array([0xb8, 0xd0, 0xb7, 0xd0]))).toHaveLength(0); |
| 78 | + expect( |
| 79 | + decoder.decode(new Uint8Array([0xb2, 0xd0, 0xb5, 0xd1, 0x81, 0xd1, 0x82, 0xd0, 0xbd, 0xd0, 0xb8])), |
| 80 | + ).toHaveLength(0); |
| 81 | + |
| 82 | + const decoded = decoder.decode(new Uint8Array([0xa])); |
| 83 | + expect(decoded).toEqual(['известни']); |
| 84 | + }); |
| 85 | + |
| 86 | + test('flushing trailing newlines', () => { |
| 87 | + expect(decodeChunks(['foo\n', '\nbar'], { flush: true })).toEqual(['foo', '', 'bar']); |
| 88 | + }); |
| 89 | + |
| 90 | + test('flushing empty buffer', () => { |
| 91 | + expect(decodeChunks([], { flush: true })).toEqual([]); |
| 92 | + }); |
| 93 | +}); |
| 94 | + |
| 95 | +describe('findDoubleNewlineIndex', () => { |
| 96 | + test('finds \\n\\n', () => { |
| 97 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\n\nbar'))).toBe(5); |
| 98 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('\n\nbar'))).toBe(2); |
| 99 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\n\n'))).toBe(5); |
| 100 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('\n\n'))).toBe(2); |
| 101 | + }); |
| 102 | + |
| 103 | + test('finds \\r\\r', () => { |
| 104 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\rbar'))).toBe(5); |
| 105 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\rbar'))).toBe(2); |
| 106 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\r'))).toBe(5); |
| 107 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\r'))).toBe(2); |
| 108 | + }); |
| 109 | + |
| 110 | + test('finds \\r\\n\\r\\n', () => { |
| 111 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n\r\nbar'))).toBe(7); |
| 112 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\n\r\nbar'))).toBe(4); |
| 113 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n\r\n'))).toBe(7); |
| 114 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('\r\n\r\n'))).toBe(4); |
| 115 | + }); |
| 116 | + |
| 117 | + test('returns -1 when no double newline found', () => { |
| 118 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\nbar'))).toBe(-1); |
| 119 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\rbar'))).toBe(-1); |
| 120 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\nbar'))).toBe(-1); |
| 121 | + expect(findDoubleNewlineIndex(new TextEncoder().encode(''))).toBe(-1); |
| 122 | + }); |
| 123 | + |
| 124 | + test('handles incomplete patterns', () => { |
| 125 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n\r'))).toBe(-1); |
| 126 | + expect(findDoubleNewlineIndex(new TextEncoder().encode('foo\r\n'))).toBe(-1); |
| 127 | + }); |
| 128 | +}); |
0 commit comments