gecko-dev/toolkit/components/telemetry/tests/gtest/TelemetryTestHelpers.h
Sylvestre Ledru 265e672179 Bug 1511181 - Reformat everything to the Google coding style r=ehsan a=clang-format
# ignore-this-changeset

--HG--
extra : amend_source : 4d301d3b0b8711c4692392aa76088ba7fd7d1022
2018-11-30 11:46:48 +01:00

54 lines
2 KiB
C++

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
#ifndef TelemetryTestHelpers_h_
#define TelemetryTestHelpers_h_
#include "js/TypeDecls.h"
#include "mozilla/TelemetryProcessEnums.h"
#include "nsITelemetry.h"
using mozilla::Telemetry::ProcessID;
namespace TelemetryTestHelpers {
void CheckUintScalar(const char* aName, JSContext* aCx,
JS::HandleValue aSnapshot, uint32_t expectedValue);
void CheckBoolScalar(const char* aName, JSContext* aCx,
JS::HandleValue aSnapshot, bool expectedValue);
void CheckStringScalar(const char* aName, JSContext* aCx,
JS::HandleValue aSnapshot, const char* expectedValue);
void CheckKeyedUintScalar(const char* aName, const char* aKey, JSContext* aCx,
JS::HandleValue aSnapshot, uint32_t expectedValue);
void CheckKeyedBoolScalar(const char* aName, const char* aKey, JSContext* aCx,
JS::HandleValue aSnapshot, bool expectedValue);
void CheckNumberOfProperties(const char* aName, JSContext* aCx,
JS::HandleValue aSnapshot,
uint32_t expectedNumProperties);
void GetScalarsSnapshot(bool aKeyed, JSContext* aCx,
JS::MutableHandle<JS::Value> aResult,
ProcessID aProcessType = ProcessID::Parent);
void GetAndClearHistogram(JSContext* cx, nsCOMPtr<nsITelemetry> mTelemetry,
const nsACString& name, bool is_keyed);
void GetProperty(JSContext* cx, const char* name, JS::HandleValue valueIn,
JS::MutableHandleValue valueOut);
void GetElement(JSContext* cx, uint32_t index, JS::HandleValue valueIn,
JS::MutableHandleValue valueOut);
void GetSnapshots(JSContext* cx, nsCOMPtr<nsITelemetry> mTelemetry,
const char* name, JS::MutableHandleValue valueOut,
bool is_keyed);
} // namespace TelemetryTestHelpers
#endif