Files
palemoon27/toolkit/devtools/server/tests/gtest/DeserializedStackFrameUbiStackFrames.cpp
roytam1 994061d746 import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1196631 - Make JS::ubi::Node::size return 1 by default. r=sfink (9b34eb8a6b)
- Bug 1191236 - Remove extract() methods used by operation forwarding on rooting types r=terrence (fb73375f55)
- Bug 1191236 - Fix UCS canonicalization, r=jonco (fb5f57c838)
- Bug 1196498 - Include objects' [[class]] names in heap snapshots; r=sfink (563e562e95)
- Bug 1194418 - Use only JS::ubi::* interfaces in census analyses; r=sfink (a1374c3a49)
- Bug 1194422 - Expose census traversals to SpiderMonkey embedders; r=sfink (7cd731fffc)
- Bug 1139476 - Part 0: Add a takeCensus method to HeapSnapshot instances; r=sfink,bholley (6aac2ae0dd)
- Bug 1139476 - Part 1: Port live heap census tests to offline heap snapshots; r=sfink (2cd8e13492)
- Bug 1139476 - Part 2: Add test comparing live and offline census results; r=sfink (0db23ac1a0)
-  Bg 1198980 - Make JS::ubi::*::identifier be uint64_t instead of uintptr_t. r=sfink (902c041cb0)
- Bug 1196634 - Part 0: Define a JS::ubi::CoarseType enum; r=sfink (4606fc2845)
- Bug 1196634 - Part 1: Extend the protobuf format for coarseType; r=sfink (4110d46a2f)
- Bug 1196634 - Part 2: Serialize and deserialize coarseType; r=sfink (530e023b48)
- Bug 1196634 - Part 3: Use coarseType() instead of is<T> in census; r=sfink (d077980d77)
- Bug 1196634 - Part 4: Remove JS::ubi::Node::getCanonicalTypeName; r=sfink (4bd7131e4b)
- Bug 1202048 - Root JSONParser explicitly; r=sfink (41a9034849)
- Bug 1175523 - Update most (but not all) tests to use elem.srcObject over .mozSrcObject. r=pehrsons (22a6502d6d)
- Bug 1201190 - Part 3: Mark every consumer of GUARD_OBJECT as MOZ_RAII, r=ehsan (f6c6381a15)
- Bug 1204594 - Use MOZ_RAII to replace GUARD_OBJECT where possible in the GC; r=sfink (cec9b7f607)
- Bug 1205054 - Remove isNullLike and other imprecise null checks; r=sfink (c12a6ed1d4)
- Bug 1205454 - Consolidate the tagged pointer marking methods; r=sfink (7e8a823712)
- js: more shared-build fixes (fdd3b957)
2022-08-08 11:07:50 +08:00

92 lines
3.1 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Test that the `JS::ubi::StackFrame`s we create from
// `mozilla::devtools::DeserializedStackFrame` instances look and behave as we would
// like.
#include "DevTools.h"
#include "js/TypeDecls.h"
#include "mozilla/devtools/DeserializedNode.h"
using testing::Field;
using testing::ReturnRef;
// A mock DeserializedStackFrame for testing.
struct MockDeserializedStackFrame : public DeserializedStackFrame
{
MockDeserializedStackFrame() : DeserializedStackFrame() { }
};
DEF_TEST(DeserializedStackFrameUbiStackFrames, {
StackFrameId id = uint64_t(1) << 42;
uint32_t line = 1337;
uint32_t column = 9; // 3 space tabs!?
const char16_t* source = MOZ_UTF16("my-javascript-file.js");
const char16_t* functionDisplayName = MOZ_UTF16("myFunctionName");
MockDeserializedStackFrame mocked;
mocked.id = id;
mocked.line = line;
mocked.column = column;
mocked.source = source;
mocked.functionDisplayName = functionDisplayName;
DeserializedStackFrame& deserialized = mocked;
JS::ubi::StackFrame ubiFrame(&deserialized);
// Test the JS::ubi::StackFrame accessors.
EXPECT_EQ(id, ubiFrame.identifier());
EXPECT_EQ(JS::ubi::StackFrame(), ubiFrame.parent());
EXPECT_EQ(line, ubiFrame.line());
EXPECT_EQ(column, ubiFrame.column());
EXPECT_EQ(JS::ubi::AtomOrTwoByteChars(source), ubiFrame.source());
EXPECT_EQ(JS::ubi::AtomOrTwoByteChars(functionDisplayName),
ubiFrame.functionDisplayName());
EXPECT_FALSE(ubiFrame.isSelfHosted());
EXPECT_FALSE(ubiFrame.isSystem());
JS::RootedObject savedFrame(cx);
EXPECT_TRUE(ubiFrame.constructSavedFrameStack(cx, &savedFrame));
uint32_t frameLine;
ASSERT_EQ(JS::SavedFrameResult::Ok, JS::GetSavedFrameLine(cx, savedFrame, &frameLine));
EXPECT_EQ(line, frameLine);
uint32_t frameColumn;
ASSERT_EQ(JS::SavedFrameResult::Ok, JS::GetSavedFrameColumn(cx, savedFrame, &frameColumn));
EXPECT_EQ(column, frameColumn);
JS::RootedObject parent(cx);
ASSERT_EQ(JS::SavedFrameResult::Ok, JS::GetSavedFrameParent(cx, savedFrame, &parent));
EXPECT_EQ(nullptr, parent);
ASSERT_EQ(NS_strlen(source), 21U);
char16_t sourceBuf[21] = {};
// Test when the length is shorter than the string length.
auto written = ubiFrame.source(RangedPtr<char16_t>(sourceBuf), 3);
EXPECT_EQ(written, 3U);
for (size_t i = 0; i < 3; i++) {
EXPECT_EQ(sourceBuf[i], source[i]);
}
written = ubiFrame.source(RangedPtr<char16_t>(sourceBuf), 21);
EXPECT_EQ(written, 21U);
for (size_t i = 0; i < 21; i++) {
EXPECT_EQ(sourceBuf[i], source[i]);
}
ASSERT_EQ(NS_strlen(functionDisplayName), 14U);
char16_t nameBuf[14] = {};
written = ubiFrame.functionDisplayName(RangedPtr<char16_t>(nameBuf), 14);
EXPECT_EQ(written, 14U);
for (size_t i = 0; i < 14; i++) {
EXPECT_EQ(nameBuf[i], functionDisplayName[i]);
}
});