mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 00:47:47 +02:00
* Correct ReadString to be delphi compatible: count is number of characters, not bytes
This commit is contained in:
parent
82a0b7328e
commit
eaf7f8b282
@ -1554,16 +1554,18 @@ Var
|
||||
B : TBytes;
|
||||
Buf : TJSArrayBuffer;
|
||||
BytesLeft : Integer;
|
||||
ByteCount : Integer;
|
||||
|
||||
begin
|
||||
// Top off
|
||||
ByteCount:=Count*2; // UTF-16
|
||||
BytesLeft:=(Size-Position);
|
||||
if BytesLeft<Count then
|
||||
Count:=BytesLeft;
|
||||
SetLength(B,Count);
|
||||
ReadBuffer(B,0,Count);
|
||||
if BytesLeft<ByteCount then
|
||||
ByteCount:=BytesLeft;
|
||||
SetLength(B,ByteCount);
|
||||
ReadBuffer(B,0,ByteCount);
|
||||
Buf:=BytesToMemory(B);
|
||||
Result:=BufferToString(Buf,0,Count);
|
||||
Result:=BufferToString(Buf,0,ByteCount);
|
||||
end;
|
||||
|
||||
procedure TStringStream.WriteString(const AString: string);
|
||||
|
@ -167,11 +167,16 @@ procedure TTestStringStream.TestReadString;
|
||||
Var
|
||||
S : String;
|
||||
|
||||
|
||||
begin
|
||||
S:='ABCDEFGH';
|
||||
DoCreate(S);
|
||||
AssertEquals('2 characters','AB',Stream.ReadString(4));
|
||||
AssertEquals('Top off characters','CDEFGH',Stream.ReadString(22));
|
||||
AssertEquals('2 characters','AB',Stream.ReadString(2));
|
||||
AssertEquals('Top off characters','CDEFGH',Stream.ReadString(11));
|
||||
S:='Hello World';
|
||||
FreeAndNil(FStream);
|
||||
DoCreate(S);
|
||||
AssertEquals('Correct string',S,Stream.ReadString(Length(S)));
|
||||
end;
|
||||
|
||||
procedure TTestStringStream.TestWriteString;
|
||||
|
@ -38,7 +38,7 @@
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit>
|
||||
<Unit>
|
||||
<Filename Value="testrtl.html"/>
|
||||
<Filename Value="index.html"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<CustomData Count="1">
|
||||
<Item0 Name="PasJSIsProjectHTMLFile" Value="1"/>
|
||||
|
@ -26,7 +26,7 @@ program testrtl;
|
||||
|
||||
uses
|
||||
browserconsole, consoletestrunner, frmrtlrun, simplelinkedlist,
|
||||
// tcstream,
|
||||
tcstream,
|
||||
// tccompstreaming,
|
||||
// tcsyshelpers,
|
||||
// tcgenarrayhelper,
|
||||
|
Loading…
Reference in New Issue
Block a user