12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { DataTypes } from '@sequelize/core';
- import { expect } from 'chai';
- import sinon from 'sinon';
- import { beforeAll2, expectsql, sequelize } from '../../support';
- describe('QueryInterface#select', () => {
- const vars = beforeAll2(() => {
- const User = sequelize.define(
- 'User',
- {
- firstName: DataTypes.STRING,
- },
- { timestamps: false },
- );
- return { User };
- });
- afterEach(() => {
- sinon.restore();
- });
- // you'll find more replacement tests in query-generator tests
- it('does not parse user-provided data as replacements', async () => {
- const { User } = vars;
- const stub = sinon.stub(sequelize, 'queryRaw');
- await sequelize.queryInterface.select(User, User.table, {
- // @ts-expect-error -- we'll fix the typings when we migrate query-generator to TypeScript
- attributes: ['id'],
- where: {
- username: 'some :data',
- },
- replacements: {
- data: "OR ' = ",
- },
- });
- expect(stub.callCount).to.eq(1);
- const firstCall = stub.getCall(0);
- expectsql(firstCall.args[0], {
- default: `SELECT [id] FROM [Users] AS [User] WHERE [User].[username] = 'some :data';`,
- mssql: `SELECT [id] FROM [Users] AS [User] WHERE [User].[username] = N'some :data';`,
- });
- });
- });
|