Merge pull request #3570 from github/robertbrignull/disable_top1000
Hide system defined lists when enterprise URI is set
This commit is contained in:
Коммит
ad17a4f828
|
@ -569,6 +569,7 @@ export async function setRemoteControllerRepo(repo: string | undefined) {
|
||||||
|
|
||||||
export interface VariantAnalysisConfig {
|
export interface VariantAnalysisConfig {
|
||||||
controllerRepo: string | undefined;
|
controllerRepo: string | undefined;
|
||||||
|
showSystemDefinedRepositoryLists: boolean;
|
||||||
onDidChangeConfiguration?: Event<void>;
|
onDidChangeConfiguration?: Event<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -578,7 +579,7 @@ export class VariantAnalysisConfigListener
|
||||||
{
|
{
|
||||||
protected handleDidChangeConfiguration(e: ConfigurationChangeEvent): void {
|
protected handleDidChangeConfiguration(e: ConfigurationChangeEvent): void {
|
||||||
this.handleDidChangeConfigurationForRelevantSettings(
|
this.handleDidChangeConfigurationForRelevantSettings(
|
||||||
[VARIANT_ANALYSIS_SETTING],
|
[VARIANT_ANALYSIS_SETTING, VSCODE_GITHUB_ENTERPRISE_URI_SETTING],
|
||||||
e,
|
e,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -586,6 +587,10 @@ export class VariantAnalysisConfigListener
|
||||||
public get controllerRepo(): string | undefined {
|
public get controllerRepo(): string | undefined {
|
||||||
return getRemoteControllerRepo();
|
return getRemoteControllerRepo();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public get showSystemDefinedRepositoryLists(): boolean {
|
||||||
|
return !hasEnterpriseUri();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const VARIANT_ANALYSIS_FILTER_RESULTS = new Setting(
|
const VARIANT_ANALYSIS_FILTER_RESULTS = new Setting(
|
||||||
|
|
|
@ -16,6 +16,7 @@ import {
|
||||||
} from "./db-item-selection";
|
} from "./db-item-selection";
|
||||||
import { createRemoteTree } from "./db-tree-creator";
|
import { createRemoteTree } from "./db-tree-creator";
|
||||||
import type { DbConfigValidationError } from "./db-validation-errors";
|
import type { DbConfigValidationError } from "./db-validation-errors";
|
||||||
|
import type { VariantAnalysisConfig } from "../config";
|
||||||
|
|
||||||
export class DbManager extends DisposableObject {
|
export class DbManager extends DisposableObject {
|
||||||
public readonly onDbItemsChanged: AppEvent<void>;
|
public readonly onDbItemsChanged: AppEvent<void>;
|
||||||
|
@ -25,6 +26,7 @@ export class DbManager extends DisposableObject {
|
||||||
constructor(
|
constructor(
|
||||||
private readonly app: App,
|
private readonly app: App,
|
||||||
private readonly dbConfigStore: DbConfigStore,
|
private readonly dbConfigStore: DbConfigStore,
|
||||||
|
private readonly variantAnalysisConfigListener: VariantAnalysisConfig,
|
||||||
) {
|
) {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
@ -36,6 +38,10 @@ export class DbManager extends DisposableObject {
|
||||||
this.dbConfigStore.onDidChangeConfig(() => {
|
this.dbConfigStore.onDidChangeConfig(() => {
|
||||||
this.onDbItemsChangesEventEmitter.fire();
|
this.onDbItemsChangesEventEmitter.fire();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.variantAnalysisConfigListener.onDidChangeConfiguration?.(() => {
|
||||||
|
this.onDbItemsChangesEventEmitter.fire();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public getSelectedDbItem(): DbItem | undefined {
|
public getSelectedDbItem(): DbItem | undefined {
|
||||||
|
@ -56,7 +62,11 @@ export class DbManager extends DisposableObject {
|
||||||
|
|
||||||
const expandedItems = this.getExpandedItems();
|
const expandedItems = this.getExpandedItems();
|
||||||
|
|
||||||
const remoteTree = createRemoteTree(configResult.value, expandedItems);
|
const remoteTree = createRemoteTree(
|
||||||
|
configResult.value,
|
||||||
|
this.variantAnalysisConfigListener,
|
||||||
|
expandedItems,
|
||||||
|
);
|
||||||
return ValueResult.ok(remoteTree.children);
|
return ValueResult.ok(remoteTree.children);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ import { DbManager } from "./db-manager";
|
||||||
import { DbPanel } from "./ui/db-panel";
|
import { DbPanel } from "./ui/db-panel";
|
||||||
import { DbSelectionDecorationProvider } from "./ui/db-selection-decoration-provider";
|
import { DbSelectionDecorationProvider } from "./ui/db-selection-decoration-provider";
|
||||||
import type { DatabasePanelCommands } from "../common/commands";
|
import type { DatabasePanelCommands } from "../common/commands";
|
||||||
|
import { VariantAnalysisConfigListener } from "../config";
|
||||||
|
|
||||||
export class DbModule extends DisposableObject {
|
export class DbModule extends DisposableObject {
|
||||||
public readonly dbManager: DbManager;
|
public readonly dbManager: DbManager;
|
||||||
|
@ -17,7 +18,13 @@ export class DbModule extends DisposableObject {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
this.dbConfigStore = new DbConfigStore(app);
|
this.dbConfigStore = new DbConfigStore(app);
|
||||||
this.dbManager = this.push(new DbManager(app, this.dbConfigStore));
|
this.dbManager = this.push(
|
||||||
|
new DbManager(
|
||||||
|
app,
|
||||||
|
this.dbConfigStore,
|
||||||
|
new VariantAnalysisConfigListener(),
|
||||||
|
),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async initialize(app: App): Promise<DbModule> {
|
public static async initialize(app: App): Promise<DbModule> {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
import type { VariantAnalysisConfig } from "../config";
|
||||||
import type { DbConfig, RemoteRepositoryList } from "./config/db-config";
|
import type { DbConfig, RemoteRepositoryList } from "./config/db-config";
|
||||||
import { SelectedDbItemKind } from "./config/db-config";
|
import { SelectedDbItemKind } from "./config/db-config";
|
||||||
import type {
|
import type {
|
||||||
|
@ -13,13 +14,17 @@ import { ExpandedDbItemKind } from "./db-item-expansion";
|
||||||
|
|
||||||
export function createRemoteTree(
|
export function createRemoteTree(
|
||||||
dbConfig: DbConfig,
|
dbConfig: DbConfig,
|
||||||
|
variantAnalysisConfig: VariantAnalysisConfig,
|
||||||
expandedItems: ExpandedDbItem[],
|
expandedItems: ExpandedDbItem[],
|
||||||
): RootRemoteDbItem {
|
): RootRemoteDbItem {
|
||||||
const systemDefinedLists = [
|
const systemDefinedLists =
|
||||||
|
variantAnalysisConfig.showSystemDefinedRepositoryLists
|
||||||
|
? [
|
||||||
createSystemDefinedList(10, dbConfig),
|
createSystemDefinedList(10, dbConfig),
|
||||||
createSystemDefinedList(100, dbConfig),
|
createSystemDefinedList(100, dbConfig),
|
||||||
createSystemDefinedList(1000, dbConfig),
|
createSystemDefinedList(1000, dbConfig),
|
||||||
];
|
]
|
||||||
|
: [];
|
||||||
|
|
||||||
const userDefinedRepoLists =
|
const userDefinedRepoLists =
|
||||||
dbConfig.databases.variantAnalysis.repositoryLists.map((r) =>
|
dbConfig.databases.variantAnalysis.repositoryLists.map((r) =>
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
import type { VariantAnalysisConfig } from "../../src/config";
|
||||||
|
|
||||||
|
export function createMockVariantAnalysisConfig(): VariantAnalysisConfig {
|
||||||
|
return {
|
||||||
|
controllerRepo: "foo/bar",
|
||||||
|
showSystemDefinedRepositoryLists: true,
|
||||||
|
onDidChangeConfiguration: jest.fn(),
|
||||||
|
};
|
||||||
|
}
|
|
@ -24,6 +24,7 @@ import { DbManager } from "../../../src/databases/db-manager";
|
||||||
import { createDbConfig } from "../../factories/db-config-factories";
|
import { createDbConfig } from "../../factories/db-config-factories";
|
||||||
import { createRemoteUserDefinedListDbItem } from "../../factories/db-item-factories";
|
import { createRemoteUserDefinedListDbItem } from "../../factories/db-item-factories";
|
||||||
import { createMockApp } from "../../__mocks__/appMock";
|
import { createMockApp } from "../../__mocks__/appMock";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../factories/config";
|
||||||
|
|
||||||
// Note: Although these are "unit tests" (i.e. not integrating with VS Code), they do
|
// Note: Although these are "unit tests" (i.e. not integrating with VS Code), they do
|
||||||
// test the interaction/"integration" between the DbManager and the DbConfigStore.
|
// test the interaction/"integration" between the DbManager and the DbConfigStore.
|
||||||
|
@ -46,7 +47,11 @@ describe("db manager", () => {
|
||||||
// We don't need to watch changes to the config file in these tests, so we
|
// We don't need to watch changes to the config file in these tests, so we
|
||||||
// pass `false` to the dbConfigStore constructor.
|
// pass `false` to the dbConfigStore constructor.
|
||||||
dbConfigStore = new DbConfigStore(app, false);
|
dbConfigStore = new DbConfigStore(app, false);
|
||||||
dbManager = new DbManager(app, dbConfigStore);
|
dbManager = new DbManager(
|
||||||
|
app,
|
||||||
|
dbConfigStore,
|
||||||
|
createMockVariantAnalysisConfig(),
|
||||||
|
);
|
||||||
await ensureDir(tempWorkspaceStoragePath);
|
await ensureDir(tempWorkspaceStoragePath);
|
||||||
|
|
||||||
dbConfigFilePath = join(
|
dbConfigFilePath = join(
|
||||||
|
|
|
@ -10,13 +10,20 @@ import type { ExpandedDbItem } from "../../../src/databases/db-item-expansion";
|
||||||
import { ExpandedDbItemKind } from "../../../src/databases/db-item-expansion";
|
import { ExpandedDbItemKind } from "../../../src/databases/db-item-expansion";
|
||||||
import { createRemoteTree } from "../../../src/databases/db-tree-creator";
|
import { createRemoteTree } from "../../../src/databases/db-tree-creator";
|
||||||
import { createDbConfig } from "../../factories/db-config-factories";
|
import { createDbConfig } from "../../factories/db-config-factories";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../factories/config";
|
||||||
|
|
||||||
describe("db tree creator", () => {
|
describe("db tree creator", () => {
|
||||||
|
const defaultVariantAnalysisConfig = createMockVariantAnalysisConfig();
|
||||||
|
|
||||||
describe("createRemoteTree", () => {
|
describe("createRemoteTree", () => {
|
||||||
it("should build root node and system defined lists", () => {
|
it("should build root node and system defined lists", () => {
|
||||||
const dbConfig = createDbConfig();
|
const dbConfig = createDbConfig();
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -45,6 +52,24 @@ describe("db tree creator", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("displays empty list when no remote user defined list nodes and system defined lists are disabled", () => {
|
||||||
|
const dbConfig = createDbConfig();
|
||||||
|
|
||||||
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
{
|
||||||
|
...defaultVariantAnalysisConfig,
|
||||||
|
showSystemDefinedRepositoryLists: false,
|
||||||
|
},
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
expect(dbTreeRoot.expanded).toBe(false);
|
||||||
|
expect(dbTreeRoot.children.length).toBe(0);
|
||||||
|
});
|
||||||
|
|
||||||
it("should create remote user defined list nodes", () => {
|
it("should create remote user defined list nodes", () => {
|
||||||
const dbConfig = createDbConfig({
|
const dbConfig = createDbConfig({
|
||||||
remoteLists: [
|
remoteLists: [
|
||||||
|
@ -59,10 +84,15 @@ describe("db tree creator", () => {
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
expect(dbTreeRoot.children.length).toBe(5);
|
||||||
const repositoryListNodes = dbTreeRoot.children.filter(
|
const repositoryListNodes = dbTreeRoot.children.filter(
|
||||||
isRemoteUserDefinedListDbItem,
|
isRemoteUserDefinedListDbItem,
|
||||||
);
|
);
|
||||||
|
@ -102,12 +132,76 @@ describe("db tree creator", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("shows only user defined list nodes when system defined lists are disabled", () => {
|
||||||
|
const dbConfig = createDbConfig({
|
||||||
|
remoteLists: [
|
||||||
|
{
|
||||||
|
name: "my-list-1",
|
||||||
|
repositories: ["owner1/repo1", "owner1/repo2", "owner2/repo1"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "my-list-2",
|
||||||
|
repositories: ["owner3/repo1", "owner3/repo2", "owner4/repo1"],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
{
|
||||||
|
...defaultVariantAnalysisConfig,
|
||||||
|
showSystemDefinedRepositoryLists: false,
|
||||||
|
},
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
expect(dbTreeRoot.children.length).toBe(2);
|
||||||
|
expect(dbTreeRoot.children[0]).toEqual({
|
||||||
|
kind: DbItemKind.RemoteUserDefinedList,
|
||||||
|
selected: false,
|
||||||
|
expanded: false,
|
||||||
|
listName: dbConfig.databases.variantAnalysis.repositoryLists[0].name,
|
||||||
|
repos:
|
||||||
|
dbConfig.databases.variantAnalysis.repositoryLists[0].repositories.map(
|
||||||
|
(repo) => ({
|
||||||
|
kind: DbItemKind.RemoteRepo,
|
||||||
|
selected: false,
|
||||||
|
repoFullName: repo,
|
||||||
|
parentListName:
|
||||||
|
dbConfig.databases.variantAnalysis.repositoryLists[0].name,
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
});
|
||||||
|
expect(dbTreeRoot.children[1]).toEqual({
|
||||||
|
kind: DbItemKind.RemoteUserDefinedList,
|
||||||
|
selected: false,
|
||||||
|
expanded: false,
|
||||||
|
listName: dbConfig.databases.variantAnalysis.repositoryLists[1].name,
|
||||||
|
repos:
|
||||||
|
dbConfig.databases.variantAnalysis.repositoryLists[1].repositories.map(
|
||||||
|
(repo) => ({
|
||||||
|
kind: DbItemKind.RemoteRepo,
|
||||||
|
selected: false,
|
||||||
|
repoFullName: repo,
|
||||||
|
parentListName:
|
||||||
|
dbConfig.databases.variantAnalysis.repositoryLists[1].name,
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it("should create remote owner nodes", () => {
|
it("should create remote owner nodes", () => {
|
||||||
const dbConfig: DbConfig = createDbConfig({
|
const dbConfig: DbConfig = createDbConfig({
|
||||||
remoteOwners: ["owner1", "owner2"],
|
remoteOwners: ["owner1", "owner2"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -131,7 +225,11 @@ describe("db tree creator", () => {
|
||||||
remoteRepos: ["owner1/repo1", "owner1/repo2", "owner2/repo1"],
|
remoteRepos: ["owner1/repo1", "owner1/repo2", "owner2/repo1"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -170,7 +268,11 @@ describe("db tree creator", () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -191,7 +293,11 @@ describe("db tree creator", () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -213,7 +319,11 @@ describe("db tree creator", () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -240,7 +350,11 @@ describe("db tree creator", () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, []);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
|
|
||||||
|
@ -265,7 +379,11 @@ describe("db tree creator", () => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, expanded);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
expanded,
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
@ -291,7 +409,11 @@ describe("db tree creator", () => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const dbTreeRoot = createRemoteTree(dbConfig, expanded);
|
const dbTreeRoot = createRemoteTree(
|
||||||
|
dbConfig,
|
||||||
|
defaultVariantAnalysisConfig,
|
||||||
|
expanded,
|
||||||
|
);
|
||||||
|
|
||||||
expect(dbTreeRoot).toBeTruthy();
|
expect(dbTreeRoot).toBeTruthy();
|
||||||
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
expect(dbTreeRoot.kind).toBe(DbItemKind.RootRemote);
|
||||||
|
|
|
@ -49,6 +49,7 @@ import {
|
||||||
writeRepoStates,
|
writeRepoStates,
|
||||||
} from "../../../../src/variant-analysis/repo-states-store";
|
} from "../../../../src/variant-analysis/repo-states-store";
|
||||||
import { permissiveFilterSortState } from "../../../unit-tests/variant-analysis-filter-sort.test";
|
import { permissiveFilterSortState } from "../../../unit-tests/variant-analysis-filter-sort.test";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../../factories/config";
|
||||||
|
|
||||||
// up to 3 minutes per test
|
// up to 3 minutes per test
|
||||||
jest.setTimeout(3 * 60 * 1000);
|
jest.setTimeout(3 * 60 * 1000);
|
||||||
|
@ -72,7 +73,11 @@ describe("Variant Analysis Manager", () => {
|
||||||
const extension = await getActivatedExtension();
|
const extension = await getActivatedExtension();
|
||||||
const cli = mockedObject<CodeQLCliServer>({});
|
const cli = mockedObject<CodeQLCliServer>({});
|
||||||
app = new ExtensionApp(extension.ctx);
|
app = new ExtensionApp(extension.ctx);
|
||||||
const dbManager = new DbManager(app, new DbConfigStore(app));
|
const dbManager = new DbManager(
|
||||||
|
app,
|
||||||
|
new DbConfigStore(app),
|
||||||
|
createMockVariantAnalysisConfig(),
|
||||||
|
);
|
||||||
variantAnalysisResultsManager = new VariantAnalysisResultsManager(
|
variantAnalysisResultsManager = new VariantAnalysisResultsManager(
|
||||||
cli,
|
cli,
|
||||||
extLogger,
|
extLogger,
|
||||||
|
|
|
@ -36,6 +36,7 @@ import type { QlPackLockFile } from "../../../../src/packaging/qlpack-lock-file"
|
||||||
//import { expect } from "@jest/globals";
|
//import { expect } from "@jest/globals";
|
||||||
import "../../../matchers/toExistInCodeQLPack";
|
import "../../../matchers/toExistInCodeQLPack";
|
||||||
import type { QlPackDetails } from "../../../../src/variant-analysis/ql-pack-details";
|
import type { QlPackDetails } from "../../../../src/variant-analysis/ql-pack-details";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../../factories/config";
|
||||||
|
|
||||||
describe("Variant Analysis Manager", () => {
|
describe("Variant Analysis Manager", () => {
|
||||||
let cli: CodeQLCliServer;
|
let cli: CodeQLCliServer;
|
||||||
|
@ -50,7 +51,11 @@ describe("Variant Analysis Manager", () => {
|
||||||
const extension = await getActivatedExtension();
|
const extension = await getActivatedExtension();
|
||||||
cli = extension.cliServer;
|
cli = extension.cliServer;
|
||||||
const app = new ExtensionApp(extension.ctx);
|
const app = new ExtensionApp(extension.ctx);
|
||||||
const dbManager = new DbManager(app, new DbConfigStore(app));
|
const dbManager = new DbManager(
|
||||||
|
app,
|
||||||
|
new DbConfigStore(app),
|
||||||
|
createMockVariantAnalysisConfig(),
|
||||||
|
);
|
||||||
const variantAnalysisResultsManager = new VariantAnalysisResultsManager(
|
const variantAnalysisResultsManager = new VariantAnalysisResultsManager(
|
||||||
cli,
|
cli,
|
||||||
extLogger,
|
extLogger,
|
||||||
|
|
|
@ -11,6 +11,7 @@ import { ExtensionApp } from "../../../../src/common/vscode/extension-app";
|
||||||
import { createMockExtensionContext } from "../../../factories/extension-context";
|
import { createMockExtensionContext } from "../../../factories/extension-context";
|
||||||
import { createDbConfig } from "../../../factories/db-config-factories";
|
import { createDbConfig } from "../../../factories/db-config-factories";
|
||||||
import { setRemoteControllerRepo } from "../../../../src/config";
|
import { setRemoteControllerRepo } from "../../../../src/config";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../../factories/config";
|
||||||
|
|
||||||
describe("db panel rendering nodes", () => {
|
describe("db panel rendering nodes", () => {
|
||||||
const workspaceStoragePath = join(__dirname, "test-workspace-storage");
|
const workspaceStoragePath = join(__dirname, "test-workspace-storage");
|
||||||
|
@ -35,7 +36,11 @@ describe("db panel rendering nodes", () => {
|
||||||
const app = new ExtensionApp(extensionContext);
|
const app = new ExtensionApp(extensionContext);
|
||||||
|
|
||||||
dbConfigStore = new DbConfigStore(app, false);
|
dbConfigStore = new DbConfigStore(app, false);
|
||||||
dbManager = new DbManager(app, dbConfigStore);
|
dbManager = new DbManager(
|
||||||
|
app,
|
||||||
|
dbConfigStore,
|
||||||
|
createMockVariantAnalysisConfig(),
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
|
|
|
@ -10,6 +10,7 @@ import { ExtensionApp } from "../../../../src/common/vscode/extension-app";
|
||||||
import { createMockExtensionContext } from "../../../factories/extension-context";
|
import { createMockExtensionContext } from "../../../factories/extension-context";
|
||||||
import { createDbConfig } from "../../../factories/db-config-factories";
|
import { createDbConfig } from "../../../factories/db-config-factories";
|
||||||
import { setRemoteControllerRepo } from "../../../../src/config";
|
import { setRemoteControllerRepo } from "../../../../src/config";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../../factories/config";
|
||||||
|
|
||||||
describe("db panel", () => {
|
describe("db panel", () => {
|
||||||
const workspaceStoragePath = join(__dirname, "test-workspace-storage");
|
const workspaceStoragePath = join(__dirname, "test-workspace-storage");
|
||||||
|
@ -34,7 +35,11 @@ describe("db panel", () => {
|
||||||
const app = new ExtensionApp(extensionContext);
|
const app = new ExtensionApp(extensionContext);
|
||||||
|
|
||||||
dbConfigStore = new DbConfigStore(app, false);
|
dbConfigStore = new DbConfigStore(app, false);
|
||||||
dbManager = new DbManager(app, dbConfigStore);
|
dbManager = new DbManager(
|
||||||
|
app,
|
||||||
|
dbConfigStore,
|
||||||
|
createMockVariantAnalysisConfig(),
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
|
|
|
@ -12,6 +12,7 @@ import { ExtensionApp } from "../../../../src/common/vscode/extension-app";
|
||||||
import { createMockExtensionContext } from "../../../factories/extension-context";
|
import { createMockExtensionContext } from "../../../factories/extension-context";
|
||||||
import { createDbConfig } from "../../../factories/db-config-factories";
|
import { createDbConfig } from "../../../factories/db-config-factories";
|
||||||
import { setRemoteControllerRepo } from "../../../../src/config";
|
import { setRemoteControllerRepo } from "../../../../src/config";
|
||||||
|
import { createMockVariantAnalysisConfig } from "../../../factories/config";
|
||||||
|
|
||||||
describe("db panel selection", () => {
|
describe("db panel selection", () => {
|
||||||
const workspaceStoragePath = join(__dirname, "test-workspace-storage");
|
const workspaceStoragePath = join(__dirname, "test-workspace-storage");
|
||||||
|
@ -36,7 +37,11 @@ describe("db panel selection", () => {
|
||||||
const app = new ExtensionApp(extensionContext);
|
const app = new ExtensionApp(extensionContext);
|
||||||
|
|
||||||
dbConfigStore = new DbConfigStore(app, false);
|
dbConfigStore = new DbConfigStore(app, false);
|
||||||
dbManager = new DbManager(app, dbConfigStore);
|
dbManager = new DbManager(
|
||||||
|
app,
|
||||||
|
dbConfigStore,
|
||||||
|
createMockVariantAnalysisConfig(),
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче