import "reflect-metadata" import { closeTestingConnections, createTestingConnections, reloadTestingDatabases, } from "../../utils/test-utils" import { DataSource } from "../../../src/data-source/DataSource" import { Post } from "./entity/Post" import { expect } from "chai" describe("other issues > mongodb entity change in subscribers should affect persistence", () => { let connections: DataSource[] before( async () => (connections = await createTestingConnections({ entities: [__dirname + "/entity/*{.js,.ts}"], subscribers: [__dirname + "/subscriber/*{.js,.ts}"], enabledDrivers: ["mongodb"], })), ) beforeEach(() => reloadTestingDatabases(connections)) after(() => closeTestingConnections(connections)) it("if entity was changed, subscriber should be take updated columns", () => Promise.all( connections.map(async function (connection) { const post = new Post() post.title = "hello world" await connection.manager.save(post) // check if it was inserted correctly const loadedPost = await connection.manager.findOneById( Post, post.id, ) expect(loadedPost).not.to.be.null loadedPost!.active.should.be.equal(false) // now update some property and let update subscriber trigger loadedPost!.active = true loadedPost!.title += "!" await connection.manager.save(loadedPost!) // check if subscriber was triggered and entity was really taken changed columns in the subscriber const loadedUpdatedPost = await connection.manager.findOneById( Post, post.id, ) expect(loadedUpdatedPost).not.to.be.null expect(loadedUpdatedPost!.title).to.equals("hello world!") expect(loadedUpdatedPost!.updatedColumns).to.equals(4) // it actually should be 3, but ObjectId column always added await connection.manager.save(loadedPost!) }), )) it("if entity was loaded, loaded property should be changed", () => Promise.all( connections.map(async function (connection) { const post = new Post() post.title = "hello world" await connection.manager.save(post) // check if it was inserted correctly const loadedPost = await connection.manager.findOne(Post, { where: { title: "hello world", }, }) expect(loadedPost).not.to.be.null loadedPost!.loaded.should.be.equal(true) await connection.manager.save(loadedPost!) }), )) })