fix: add missing "simple" property in several APIs to prevent proxying of return values (#13905)
* fix: add missing "simple" property in several APIs to prevent proxying of return values * add tests
This commit is contained in:
parent
e0735baff2
commit
f904057104
3 changed files with 45 additions and 18 deletions
|
@ -1114,6 +1114,10 @@ std::vector<mate::Dictionary> App::GetAppMetrics(v8::Isolate* isolate) {
|
||||||
mate::Dictionary memory_dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary memory_dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
mate::Dictionary cpu_dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary cpu_dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
|
|
||||||
|
pid_dict.SetHidden("simple", true);
|
||||||
|
memory_dict.SetHidden("simple", true);
|
||||||
|
cpu_dict.SetHidden("simple", true);
|
||||||
|
|
||||||
memory_dict.Set(
|
memory_dict.Set(
|
||||||
"workingSetSize",
|
"workingSetSize",
|
||||||
static_cast<double>(
|
static_cast<double>(
|
||||||
|
|
|
@ -133,6 +133,7 @@ v8::Local<v8::Value> AtomBindings::GetHeapStatistics(v8::Isolate* isolate) {
|
||||||
isolate->GetHeapStatistics(&v8_heap_stats);
|
isolate->GetHeapStatistics(&v8_heap_stats);
|
||||||
|
|
||||||
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
|
dict.SetHidden("simple", true);
|
||||||
dict.Set("totalHeapSize",
|
dict.Set("totalHeapSize",
|
||||||
static_cast<double>(v8_heap_stats.total_heap_size() >> 10));
|
static_cast<double>(v8_heap_stats.total_heap_size() >> 10));
|
||||||
dict.Set(
|
dict.Set(
|
||||||
|
@ -161,6 +162,7 @@ v8::Local<v8::Value> AtomBindings::GetProcessMemoryInfo(v8::Isolate* isolate) {
|
||||||
auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics();
|
auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics();
|
||||||
|
|
||||||
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
|
dict.SetHidden("simple", true);
|
||||||
dict.Set("workingSetSize",
|
dict.Set("workingSetSize",
|
||||||
static_cast<double>(metrics->GetWorkingSetSize() >> 10));
|
static_cast<double>(metrics->GetWorkingSetSize() >> 10));
|
||||||
dict.Set("peakWorkingSetSize",
|
dict.Set("peakWorkingSetSize",
|
||||||
|
@ -185,6 +187,7 @@ v8::Local<v8::Value> AtomBindings::GetSystemMemoryInfo(v8::Isolate* isolate,
|
||||||
}
|
}
|
||||||
|
|
||||||
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
|
dict.SetHidden("simple", true);
|
||||||
dict.Set("total", mem_info.total);
|
dict.Set("total", mem_info.total);
|
||||||
|
|
||||||
// See Chromium's "base/process/process_metrics.h" for an explanation.
|
// See Chromium's "base/process/process_metrics.h" for an explanation.
|
||||||
|
@ -207,6 +210,7 @@ v8::Local<v8::Value> AtomBindings::GetSystemMemoryInfo(v8::Isolate* isolate,
|
||||||
|
|
||||||
v8::Local<v8::Value> AtomBindings::GetCPUUsage(v8::Isolate* isolate) {
|
v8::Local<v8::Value> AtomBindings::GetCPUUsage(v8::Isolate* isolate) {
|
||||||
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
|
dict.SetHidden("simple", true);
|
||||||
int processor_count = base::SysInfo::NumberOfProcessors();
|
int processor_count = base::SysInfo::NumberOfProcessors();
|
||||||
dict.Set("percentCPUUsage",
|
dict.Set("percentCPUUsage",
|
||||||
metrics_->GetPlatformIndependentCPUUsage() / processor_count);
|
metrics_->GetPlatformIndependentCPUUsage() / processor_count);
|
||||||
|
@ -227,6 +231,7 @@ v8::Local<v8::Value> AtomBindings::GetIOCounters(v8::Isolate* isolate) {
|
||||||
auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics();
|
auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics();
|
||||||
base::IoCounters io_counters;
|
base::IoCounters io_counters;
|
||||||
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
||||||
|
dict.SetHidden("simple", true);
|
||||||
|
|
||||||
if (metrics->GetIOCounters(&io_counters)) {
|
if (metrics->GetIOCounters(&io_counters)) {
|
||||||
dict.Set("readOperationCount", io_counters.ReadOperationCount);
|
dict.Set("readOperationCount", io_counters.ReadOperationCount);
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
const assert = require('assert')
|
const {expect} = require('chai')
|
||||||
|
|
||||||
describe('process module', () => {
|
describe('process module', () => {
|
||||||
describe('process.getCPUUsage()', () => {
|
describe('process.getCPUUsage()', () => {
|
||||||
it('returns a cpu usage object', () => {
|
it('returns a cpu usage object', () => {
|
||||||
const cpuUsage = process.getCPUUsage()
|
const cpuUsage = process.getCPUUsage()
|
||||||
assert.equal(typeof cpuUsage.percentCPUUsage, 'number')
|
expect(cpuUsage.percentCPUUsage).to.be.a('number')
|
||||||
assert.equal(typeof cpuUsage.idleWakeupsPerSecond, 'number')
|
expect(cpuUsage.idleWakeupsPerSecond).to.be.a('number')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -18,27 +18,45 @@ describe('process module', () => {
|
||||||
|
|
||||||
it('returns an io counters object', () => {
|
it('returns an io counters object', () => {
|
||||||
const ioCounters = process.getIOCounters()
|
const ioCounters = process.getIOCounters()
|
||||||
assert.equal(typeof ioCounters.readOperationCount, 'number')
|
expect(ioCounters.readOperationCount).to.be.a('number')
|
||||||
assert.equal(typeof ioCounters.writeOperationCount, 'number')
|
expect(ioCounters.writeOperationCount).to.be.a('number')
|
||||||
assert.equal(typeof ioCounters.otherOperationCount, 'number')
|
expect(ioCounters.otherOperationCount).to.be.a('number')
|
||||||
assert.equal(typeof ioCounters.readTransferCount, 'number')
|
expect(ioCounters.readTransferCount).to.be.a('number')
|
||||||
assert.equal(typeof ioCounters.writeTransferCount, 'number')
|
expect(ioCounters.writeTransferCount).to.be.a('number')
|
||||||
assert.equal(typeof ioCounters.otherTransferCount, 'number')
|
expect(ioCounters.otherTransferCount).to.be.a('number')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('process.getProcessMemoryInfo()', () => {
|
||||||
|
it('returns process memory info object', () => {
|
||||||
|
const processMemoryInfo = process.getProcessMemoryInfo()
|
||||||
|
expect(processMemoryInfo.peakWorkingSetSize).to.be.a('number')
|
||||||
|
expect(processMemoryInfo.privateBytes).to.be.a('number')
|
||||||
|
expect(processMemoryInfo.sharedBytes).to.be.a('number')
|
||||||
|
expect(processMemoryInfo.workingSetSize).to.be.a('number')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('process.getSystemMemoryInfo()', () => {
|
||||||
|
it('returns system memory info object', () => {
|
||||||
|
const systemMemoryInfo = process.getSystemMemoryInfo()
|
||||||
|
expect(systemMemoryInfo.free).to.be.a('number')
|
||||||
|
expect(systemMemoryInfo.total).to.be.a('number')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('process.getHeapStatistics()', () => {
|
describe('process.getHeapStatistics()', () => {
|
||||||
it('returns heap statistics object', () => {
|
it('returns heap statistics object', () => {
|
||||||
const heapStats = process.getHeapStatistics()
|
const heapStats = process.getHeapStatistics()
|
||||||
assert.equal(typeof heapStats.totalHeapSize, 'number')
|
expect(heapStats.totalHeapSize).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.totalHeapSizeExecutable, 'number')
|
expect(heapStats.totalHeapSizeExecutable).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.totalPhysicalSize, 'number')
|
expect(heapStats.totalPhysicalSize).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.totalAvailableSize, 'number')
|
expect(heapStats.totalAvailableSize).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.usedHeapSize, 'number')
|
expect(heapStats.usedHeapSize).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.heapSizeLimit, 'number')
|
expect(heapStats.heapSizeLimit).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.mallocedMemory, 'number')
|
expect(heapStats.mallocedMemory).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.peakMallocedMemory, 'number')
|
expect(heapStats.peakMallocedMemory).to.be.a('number')
|
||||||
assert.equal(typeof heapStats.doesZapGarbage, 'boolean')
|
expect(heapStats.doesZapGarbage).to.be.a('boolean')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue