mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-12-12 07:17:12 +00:00
87 lines
3.0 KiB
TypeScript
87 lines
3.0 KiB
TypeScript
import * as ko from "knockout";
|
|
import * as Constants from "../../Common/Constants";
|
|
import * as ViewModels from "../../Contracts/ViewModels";
|
|
import Explorer from "../Explorer";
|
|
import QueryTab from "./QueryTab";
|
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
|
|
|
describe("Query Tab", () => {
|
|
function getNewQueryTabForContainer(container: Explorer): QueryTab {
|
|
const database = {
|
|
container: container,
|
|
id: ko.observable<string>("test"),
|
|
isDatabaseShared: () => false
|
|
} as ViewModels.Database;
|
|
const collection = {
|
|
container: container,
|
|
databaseId: "test",
|
|
id: ko.observable<string>("test")
|
|
} as ViewModels.Collection;
|
|
|
|
return new QueryTab({
|
|
tabKind: ViewModels.CollectionTabKind.Query,
|
|
collection: collection,
|
|
database: database,
|
|
title: "",
|
|
tabPath: "",
|
|
isActive: ko.observable<boolean>(false),
|
|
hashLocation: "",
|
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {}
|
|
});
|
|
}
|
|
|
|
describe("shouldSetSystemPartitionKeyContainerPartitionKeyValueUndefined", () => {
|
|
const collection = {
|
|
id: ko.observable<string>("withoutsystempk"),
|
|
partitionKey: {
|
|
systemKey: true
|
|
}
|
|
} as ViewModels.Collection;
|
|
|
|
it("no container with system pk, should not set partition key option", () => {
|
|
const iteratorOptions = QueryTab.getIteratorOptions(collection);
|
|
expect(iteratorOptions.initialHeaders).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe("isQueryMetricsEnabled()", () => {
|
|
let explorer: Explorer;
|
|
|
|
beforeEach(() => {
|
|
explorer = new Explorer();
|
|
});
|
|
|
|
it("should be true for accounts using SQL API", () => {
|
|
explorer.defaultExperience(Constants.DefaultAccountExperience.DocumentDB.toLowerCase());
|
|
const queryTab = getNewQueryTabForContainer(explorer);
|
|
expect(queryTab.isQueryMetricsEnabled()).toBe(true);
|
|
});
|
|
|
|
it("should be false for accounts using other APIs", () => {
|
|
explorer.defaultExperience(Constants.DefaultAccountExperience.Graph.toLowerCase());
|
|
const queryTab = getNewQueryTabForContainer(explorer);
|
|
expect(queryTab.isQueryMetricsEnabled()).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe("Save Queries command button", () => {
|
|
let explorer: Explorer;
|
|
|
|
beforeEach(() => {
|
|
explorer = new Explorer();
|
|
});
|
|
|
|
it("should be visible when using a supported API", () => {
|
|
explorer.defaultExperience(Constants.DefaultAccountExperience.DocumentDB);
|
|
const queryTab = getNewQueryTabForContainer(explorer);
|
|
expect(queryTab.saveQueryButton.visible()).toBe(true);
|
|
});
|
|
|
|
it("should not be visible when using an unsupported API", () => {
|
|
explorer.defaultExperience(Constants.DefaultAccountExperience.MongoDB);
|
|
const queryTab = getNewQueryTabForContainer(explorer);
|
|
expect(queryTab.saveQueryButton.visible()).toBe(false);
|
|
});
|
|
});
|
|
});
|