不要怂,就是干,撸起袖子干!

searchPath.test.js 18.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
'use strict';

const chai = require('chai');
const expect = chai.expect;
const Support = require('../support');
const DataTypes = require('../../../lib/data-types');
const Op = Support.Sequelize.Op;

const SEARCH_PATH_ONE = 'schema_one,public';
const SEARCH_PATH_TWO = 'schema_two,public';

const current = Support.createSequelizeInstance({
  dialectOptions: {
    prependSearchPath: true
  }
});

let locationId;

describe(Support.getTestDialectTeaser('Model'), () => {
  if (current.dialect.supports.searchPath) {
    describe('SEARCH PATH', () => {
      before(function() {
        this.Restaurant = current.define('restaurant', {
          foo: DataTypes.STRING,
          bar: DataTypes.STRING
        },
        {tableName: 'restaurants'});
        this.Location = current.define('location', {
          name: DataTypes.STRING,
          type: DataTypes.ENUM('a', 'b')
        },
        {tableName: 'locations'});
        this.Employee = current.define('employee', {
          first_name: DataTypes.STRING,
          last_name: DataTypes.STRING
        },
        {tableName: 'employees'});
        this.Restaurant.belongsTo(this.Location,
          {
            foreignKey: 'location_id',
            constraints: false
          });
        this.Employee.belongsTo(this.Restaurant,
          {
            foreignKey: 'restaurant_id',
            constraints: false
          });
        this.Restaurant.hasMany(this.Employee, {
          foreignKey: 'restaurant_id',
          constraints: false
        });
      });

      beforeEach('build restaurant tables', function() {
        const Restaurant = this.Restaurant;
        return current.createSchema('schema_one').then(() => {
          return current.createSchema('schema_two');
        }).then(() => {
          return Restaurant.sync({force: true, searchPath: SEARCH_PATH_ONE});
        }).then(() => {
          return Restaurant.sync({force: true, searchPath: SEARCH_PATH_TWO});
        }).catch(err => {
          expect(err).to.be.null;
        });
      });

      afterEach('drop schemas', () => {
        return current.dropSchema('schema_one').then(() => {
          return current.dropSchema('schema_two');
        });
      });

      describe('enum case', () => {
        it('able to refresh enum when searchPath is used', function() {
          return this.Location.sync({ force: true });
        });
      });

      describe('Add data via model.create, retrieve via model.findOne', () => {
        it('should be able to insert data into the table in schema_one using create', function() {
          const Restaurant = this.Restaurant;
          let restaurantId;

          return Restaurant.create({
            foo: 'one',
            location_id: locationId
          }, {searchPath: SEARCH_PATH_ONE})
            .then(() => {
              return Restaurant.findOne({
                where: {foo: 'one'}, searchPath: SEARCH_PATH_ONE
              });
            }).then(obj => {
              expect(obj).to.not.be.null;
              expect(obj.foo).to.equal('one');
              restaurantId = obj.id;
              return Restaurant.findByPk(restaurantId, {searchPath: SEARCH_PATH_ONE});
            }).then(obj => {
              expect(obj).to.not.be.null;
              expect(obj.foo).to.equal('one');
            });
        });

        it('should fail to insert data into schema_two using create', function() {
          const Restaurant = this.Restaurant;

          return Restaurant.create({
            foo: 'test'
          }, {searchPath: SEARCH_PATH_TWO}).catch(err => {
            expect(err).to.not.be.null;
          });
        });

        it('should be able to insert data into the table in schema_two using create', function() {
          const Restaurant = this.Restaurant;
          let restaurantId;

          return Restaurant.create({
            foo: 'two',
            location_id: locationId
          }, {searchPath: SEARCH_PATH_TWO})
            .then(() => {
              return Restaurant.findOne({
                where: {foo: 'two'}, searchPath: SEARCH_PATH_TWO
              });
            }).then(obj => {
              expect(obj).to.not.be.null;
              expect(obj.foo).to.equal('two');
              restaurantId = obj.id;
              return Restaurant.findByPk(restaurantId, {searchPath: SEARCH_PATH_TWO});
            }).then(obj => {
              expect(obj).to.not.be.null;
              expect(obj.foo).to.equal('two');
            });
        });


        it('should fail to find schema_one object in schema_two', function() {
          const Restaurant = this.Restaurant;

          return Restaurant.findOne({where: {foo: 'one'}, searchPath: SEARCH_PATH_TWO}).then(RestaurantObj => {
            expect(RestaurantObj).to.be.null;
          });
        });

        it('should fail to find schema_two object in schema_one', function() {
          const Restaurant = this.Restaurant;

          return Restaurant.findOne({where: {foo: 'two'}, searchPath: SEARCH_PATH_ONE}).then(RestaurantObj => {
            expect(RestaurantObj).to.be.null;
          });
        });
      });

      describe('Add data via instance.save, retrieve via model.findAll', () => {
        it('should be able to insert data into both schemas using instance.save and retrieve it via findAll', function() {
          const Restaurant = this.Restaurant;

          let restaurauntModel = Restaurant.build({bar: 'one.1'});

          return restaurauntModel.save({searchPath: SEARCH_PATH_ONE})
            .then(() => {
              restaurauntModel = Restaurant.build({bar: 'one.2'});
              return restaurauntModel.save({searchPath: SEARCH_PATH_ONE});
            }).then(() => {
              restaurauntModel = Restaurant.build({bar: 'two.1'});
              return restaurauntModel.save({searchPath: SEARCH_PATH_TWO});
            }).then(() => {
              restaurauntModel = Restaurant.build({bar: 'two.2'});
              return restaurauntModel.save({searchPath: SEARCH_PATH_TWO});
            }).then(() => {
              restaurauntModel = Restaurant.build({bar: 'two.3'});
              return restaurauntModel.save({searchPath: SEARCH_PATH_TWO});
            }).then(() => {
              return Restaurant.findAll({searchPath: SEARCH_PATH_ONE});
            }).then(restaurantsOne => {
              expect(restaurantsOne).to.not.be.null;
              expect(restaurantsOne.length).to.equal(2);
              restaurantsOne.forEach(restaurant => {
                expect(restaurant.bar).to.contain('one');
              });
              return Restaurant.findAndCountAll({searchPath: SEARCH_PATH_ONE});
            }).then(restaurantsOne => {
              expect(restaurantsOne).to.not.be.null;
              expect(restaurantsOne.rows.length).to.equal(2);
              expect(restaurantsOne.count).to.equal(2);
              restaurantsOne.rows.forEach(restaurant => {
                expect(restaurant.bar).to.contain('one');
              });
              return Restaurant.findAll({searchPath: SEARCH_PATH_TWO});
            }).then(restaurantsTwo => {
              expect(restaurantsTwo).to.not.be.null;
              expect(restaurantsTwo.length).to.equal(3);
              restaurantsTwo.forEach(restaurant => {
                expect(restaurant.bar).to.contain('two');
              });
              return Restaurant.findAndCountAll({searchPath: SEARCH_PATH_TWO});
            }).then(restaurantsTwo => {
              expect(restaurantsTwo).to.not.be.null;
              expect(restaurantsTwo.rows.length).to.equal(3);
              expect(restaurantsTwo.count).to.equal(3);
              restaurantsTwo.rows.forEach(restaurant => {
                expect(restaurant.bar).to.contain('two');
              });
            });
        });
      });

      describe('Add data via instance.save, retrieve via model.count and model.find', () => {
        it('should be able to insert data into both schemas using instance.save count it and retrieve it via findAll with where', function() {
          const Restaurant = this.Restaurant;

          let restaurauntModel = Restaurant.build({bar: 'one.1'});

          return restaurauntModel.save({searchPath: SEARCH_PATH_ONE}).then(() => {
            restaurauntModel = Restaurant.build({bar: 'one.2'});
            return restaurauntModel.save({searchPath: SEARCH_PATH_ONE});
          }).then(() => {
            restaurauntModel = Restaurant.build({bar: 'two.1'});
            return restaurauntModel.save({searchPath: SEARCH_PATH_TWO});
          }).then(() => {
            restaurauntModel = Restaurant.build({bar: 'two.2'});
            return restaurauntModel.save({searchPath: SEARCH_PATH_TWO});
          }).then(() => {
            restaurauntModel = Restaurant.build({bar: 'two.3'});
            return restaurauntModel.save({searchPath: SEARCH_PATH_TWO});
          }).then(() => {
            return Restaurant.findAll({
              where: {bar: {[Op.like]: 'one%'}},
              searchPath: SEARCH_PATH_ONE
            });
          }).then(restaurantsOne => {
            expect(restaurantsOne).to.not.be.null;
            expect(restaurantsOne.length).to.equal(2);
            restaurantsOne.forEach(restaurant => {
              expect(restaurant.bar).to.contain('one');
            });
            return Restaurant.count({searchPath: SEARCH_PATH_ONE});
          }).then(count => {
            expect(count).to.not.be.null;
            expect(count).to.equal(2);
            return Restaurant.findAll({
              where: {bar: {[Op.like]: 'two%'}},
              searchPath: SEARCH_PATH_TWO
            });
          }).then(restaurantsTwo => {
            expect(restaurantsTwo).to.not.be.null;
            expect(restaurantsTwo.length).to.equal(3);
            restaurantsTwo.forEach(restaurant => {
              expect(restaurant.bar).to.contain('two');
            });
            return Restaurant.count({searchPath: SEARCH_PATH_TWO});
          }).then(count => {
            expect(count).to.not.be.null;
            expect(count).to.equal(3);
          });
        });
      });


      describe('Get associated data in public schema via include', () => {
        beforeEach(function() {
          const Location = this.Location;

          return Location.sync({force: true})
            .then(() => {
              return Location.create({name: 'HQ'}).then(() => {
                return Location.findOne({where: {name: 'HQ'}}).then(obj => {
                  expect(obj).to.not.be.null;
                  expect(obj.name).to.equal('HQ');
                  locationId = obj.id;
                });
              });
            })
            .catch(err => {
              expect(err).to.be.null;
            });
        });

        it('should be able to insert and retrieve associated data into the table in schema_one', function() {
          const Restaurant = this.Restaurant;
          const Location = this.Location;

          return Restaurant.create({
            foo: 'one',
            location_id: locationId
          }, {searchPath: SEARCH_PATH_ONE}).then(() => {
            return Restaurant.findOne({
              where: {foo: 'one'}, include: [{
                model: Location, as: 'location'
              }], searchPath: SEARCH_PATH_ONE
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.foo).to.equal('one');
            expect(obj.location).to.not.be.null;
            expect(obj.location.name).to.equal('HQ');
          });
        });

        it('should be able to insert and retrieve associated data into the table in schema_two', function() {
          const Restaurant = this.Restaurant;
          const Location = this.Location;

          return Restaurant.create({
            foo: 'two',
            location_id: locationId
          }, {searchPath: SEARCH_PATH_TWO}).then(() => {
            return Restaurant.findOne({
              where: {foo: 'two'}, include: [{
                model: Location, as: 'location'
              }], searchPath: SEARCH_PATH_TWO
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.foo).to.equal('two');
            expect(obj.location).to.not.be.null;
            expect(obj.location.name).to.equal('HQ');
          });
        });
      });


      describe('Get schema specific associated data via include', () => {
        beforeEach(function() {
          const Employee = this.Employee;
          return Employee.sync({force: true, searchPath: SEARCH_PATH_ONE})
            .then(() => {
              return Employee.sync({force: true, searchPath: SEARCH_PATH_TWO});
            })
            .catch(err => {
              expect(err).to.be.null;
            });
        });

        it('should be able to insert and retrieve associated data into the table in schema_one', function() {
          const Restaurant = this.Restaurant;
          const Employee = this.Employee;
          let restaurantId;

          return Restaurant.create({
            foo: 'one'
          }, {searchPath: SEARCH_PATH_ONE}).then(() => {
            return Restaurant.findOne({
              where: {foo: 'one'}, searchPath: SEARCH_PATH_ONE
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.foo).to.equal('one');
            restaurantId = obj.id;
            return Employee.create({
              first_name: 'Restaurant',
              last_name: 'one',
              restaurant_id: restaurantId
            }, {searchPath: SEARCH_PATH_ONE});
          }).then(() => {
            return Restaurant.findOne({
              where: {foo: 'one'}, searchPath: SEARCH_PATH_ONE, include: [{
                model: Employee, as: 'employees'
              }]
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.employees).to.not.be.null;
            expect(obj.employees.length).to.equal(1);
            expect(obj.employees[0].last_name).to.equal('one');
            return obj.getEmployees({searchPath: SEARCH_PATH_ONE});
          }).then(employees => {
            expect(employees.length).to.equal(1);
            expect(employees[0].last_name).to.equal('one');
            return Employee.findOne({
              where: {last_name: 'one'}, searchPath: SEARCH_PATH_ONE, include: [{
                model: Restaurant, as: 'restaurant'
              }]
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.restaurant).to.not.be.null;
            expect(obj.restaurant.foo).to.equal('one');
            return obj.getRestaurant({searchPath: SEARCH_PATH_ONE});
          }).then(restaurant => {
            expect(restaurant).to.not.be.null;
            expect(restaurant.foo).to.equal('one');
          });
        });

        it('should be able to insert and retrieve associated data into the table in schema_two', function() {
          const Restaurant = this.Restaurant;
          const Employee = this.Employee;
          let restaurantId;

          return Restaurant.create({
            foo: 'two'
          }, {searchPath: SEARCH_PATH_TWO}).then(() => {
            return Restaurant.findOne({
              where: {foo: 'two'}, searchPath: SEARCH_PATH_TWO
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.foo).to.equal('two');
            restaurantId = obj.id;
            return Employee.create({
              first_name: 'Restaurant',
              last_name: 'two',
              restaurant_id: restaurantId
            }, {searchPath: SEARCH_PATH_TWO});
          }).then(() => {
            return Restaurant.findOne({
              where: {foo: 'two'}, searchPath: SEARCH_PATH_TWO, include: [{
                model: Employee, as: 'employees'
              }]
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.employees).to.not.be.null;
            expect(obj.employees.length).to.equal(1);
            expect(obj.employees[0].last_name).to.equal('two');
            return obj.getEmployees({searchPath: SEARCH_PATH_TWO});
          }).then(employees => {
            expect(employees.length).to.equal(1);
            expect(employees[0].last_name).to.equal('two');
            return Employee.findOne({
              where: {last_name: 'two'}, searchPath: SEARCH_PATH_TWO, include: [{
                model: Restaurant, as: 'restaurant'
              }]
            });
          }).then(obj => {
            expect(obj).to.not.be.null;
            expect(obj.restaurant).to.not.be.null;
            expect(obj.restaurant.foo).to.equal('two');
            return obj.getRestaurant({searchPath: SEARCH_PATH_TWO});
          }).then(restaurant => {
            expect(restaurant).to.not.be.null;
            expect(restaurant.foo).to.equal('two');
          });
        });
      });

      describe('concurency tests', () => {
        it('should build and persist instances to 2 schemas concurrently in any order', function() {
          const Restaurant = this.Restaurant;

          let restaurauntModelSchema1 = Restaurant.build({bar: 'one.1'});
          const restaurauntModelSchema2 = Restaurant.build({bar: 'two.1'});

          return restaurauntModelSchema1.save({searchPath: SEARCH_PATH_ONE})
            .then(() => {
              restaurauntModelSchema1 = Restaurant.build({bar: 'one.2'});
              return restaurauntModelSchema2.save({searchPath: SEARCH_PATH_TWO});
            }).then(() => {
              return restaurauntModelSchema1.save({searchPath: SEARCH_PATH_ONE});
            }).then(() => {
              return Restaurant.findAll({searchPath: SEARCH_PATH_ONE});
            }).then(restaurantsOne => {
              expect(restaurantsOne).to.not.be.null;
              expect(restaurantsOne.length).to.equal(2);
              restaurantsOne.forEach(restaurant => {
                expect(restaurant.bar).to.contain('one');
              });
              return Restaurant.findAll({searchPath: SEARCH_PATH_TWO});
            }).then(restaurantsTwo => {
              expect(restaurantsTwo).to.not.be.null;
              expect(restaurantsTwo.length).to.equal(1);
              restaurantsTwo.forEach(restaurant => {
                expect(restaurant.bar).to.contain('two');
              });
            });
        });
      });
    });
  }
});