@itwin/core-backend
Version:
iTwin.js backend components
29 lines • 1.98 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
import { expect } from "chai";
import { IModelTestUtils } from "../IModelTestUtils";
describe("IModelDb.queryTextureData", () => {
let imodel;
before(() => {
imodel = IModelTestUtils.createSnapshotFromSeed(IModelTestUtils.prepareOutputFile("ElementGraphics", "mirukuru.ibim"), IModelTestUtils.resolveAssetFile("mirukuru.ibim"));
});
after(() => imodel.close());
it("returns undefined if texture not found", async () => {
expect(await imodel.queryTextureData({ name: "0x123" })).to.be.undefined;
});
describe("throws", () => {
it("if name is not a valid Id", async () => {
await expect(imodel.queryTextureData({})).to.be.rejectedWith("name property must be a valid Id64String");
await expect(imodel.queryTextureData({ name: "0" })).to.be.rejectedWith("name property must be a valid Id64String");
await expect(imodel.queryTextureData({ name: "NotAnId" })).to.be.rejectedWith("name property must be a valid Id64String");
});
it("if max size is not a positive number", async () => {
await expect(imodel.queryTextureData({ name: "0x123", maxTextureSize: "25" })).to.be.rejectedWith("maxTextureSize property must be a positive number");
await expect(imodel.queryTextureData({ name: "0x123", maxTextureSize: 0 })).to.be.rejectedWith("maxTextureSize property must be a positive number");
await expect(imodel.queryTextureData({ name: "0x123", maxTextureSize: -1 })).to.be.rejectedWith("maxTextureSize property must be a positive number");
});
});
});
//# sourceMappingURL=GetTextureImage.test.js.map