Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(client): Regression test for gh-13089 #15435

Merged
merged 7 commits into from Sep 23, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/client/tests/functional/issues/13089/_matrix.ts
@@ -0,0 +1,9 @@
import { defineMatrix } from '../../_utils/defineMatrix'

export default defineMatrix(() => [
[
{
provider: 'mongodb',
},
],
])
19 changes: 19 additions & 0 deletions packages/client/tests/functional/issues/13089/prisma/_schema.ts
@@ -0,0 +1,19 @@
import testMatrix from '../_matrix'

export default testMatrix.setupSchema(({ provider }) => {
return /* Prisma */ `
generator client {
provider = "prisma-client-js"
}

datasource db {
provider = "${provider}"
url = env("DATABASE_URI_${provider}")
}

model users {
id String @id @map("_id") @default(auto()) @db.ObjectId
firstName String
}
`
})
39 changes: 39 additions & 0 deletions packages/client/tests/functional/issues/13089/tests.ts
@@ -0,0 +1,39 @@
import testMatrix from './_matrix'
// @ts-ignore
import type { PrismaClient } from './node_modules/@prisma/client'

declare let prisma: PrismaClient

// https://github.com/prisma/prisma/issues/13089
testMatrix.setupTestSuite(
() => {
test('should return records when using a `$` in the search string', async () => {
await prisma.users.create({
data: {
firstName: 'foo',
},
})

await prisma.users.create({
data: {
firstName: '$foo',
},
})

const records = await prisma.users.findMany({
where: {
firstName: '$foo',
},
})

expect(records).toHaveLength(1)
expect(records[0].firstName).toEqual('$foo')
})
},
{
optOut: {
from: ['cockroachdb', 'mysql', 'postgresql', 'sqlite', 'sqlserver'],
reason: 'Only applicable to Mongodb',
},
},
)