-
Notifications
You must be signed in to change notification settings - Fork 30.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util: add fast path for Latin1 decoding
- Loading branch information
Mert Can Altin
committed
Oct 5, 2024
1 parent
bbdfeeb
commit b871573
Showing
4 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
#include "encoding_binding.h" | ||
#include "node_test_fixture.h" | ||
#include "env-inl.h" | ||
#include "v8.h" | ||
#include "gtest/gtest.h" | ||
|
||
namespace node { | ||
namespace encoding_binding { | ||
|
||
bool RunDecodeLatin1(Environment* env, Local<Value> args[], Local<Value>* result) { | ||
Isolate* isolate = env->isolate(); | ||
TryCatch try_catch(isolate); | ||
|
||
BindingData::DecodeLatin1(FunctionCallbackInfo<Value>(args)); | ||
|
||
if (try_catch.HasCaught()) { | ||
return false; | ||
} | ||
|
||
*result = try_catch.Exception(); | ||
return true; | ||
} | ||
|
||
class EncodingBindingTest : public NodeTestFixture {}; | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_ValidInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
const uint8_t latin1_data[] = {0xC1, 0xE9, 0xF3}; | ||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, sizeof(latin1_data)); | ||
memcpy(ab->GetBackingStore()->Data(), latin1_data, sizeof(latin1_data)); | ||
|
||
Local<Uint8Array> array = Uint8Array::New(ab, 0, sizeof(latin1_data)); | ||
Local<Value> args[] = { array }; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, "Áéó"); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_EmptyInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, 0); | ||
Local<Uint8Array> array = Uint8Array::New(ab, 0, 0); | ||
Local<Value> args[] = { array }; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, ""); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_InvalidInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
Local<Value> args[] = { String::NewFromUtf8Literal(isolate, "Invalid input") }; | ||
|
||
Local<Value> result; | ||
EXPECT_FALSE(RunDecodeLatin1(env, args, &result)); | ||
} | ||
|
||
} // namespace encoding_binding | ||
} // namespace node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters