import "reflect-metadata" import { closeTestingConnections, createTestingConnections, reloadTestingDatabases, } from "../../utils/test-utils" import { User } from "./entity/User" import { SpecificUser } from "./entity/SpecificUser" import { DataSource } from "../../../src/data-source/DataSource" import { expect } from "chai" describe("github issue > #1326 Wrong behavior w/ the same table names in different databases", () => { let connections: DataSource[] = [] before( async () => (connections = await createTestingConnections({ entities: [__dirname + "/entity/*{.js,.ts}"], enabledDrivers: ["mysql"], })), ) beforeEach(() => reloadTestingDatabases(connections)) after(() => closeTestingConnections(connections)) it("should not confuse equivalent table names in different databases", () => Promise.all( connections.map(async (connection) => { for (let i = 1; i <= 10; i++) { const user = new User() user.name = "user #" + i await connection.manager.save(user) } for (let i = 1; i <= 10; i++) { const user = new SpecificUser() user.name = "specific user #" + i await connection.manager.save(user) } const user = await connection.manager.findOneBy(User, { name: "user #1", }) expect(user).not.to.be.null user!.should.be.eql({ id: 1, name: "user #1", }) const specificUser = await connection.manager.findOneBy( SpecificUser, { name: "specific user #1" }, ) expect(specificUser).not.to.be.null specificUser!.should.be.eql({ id: 1, name: "specific user #1", }) }), )) })