无法使用gql连接到数据库Nest js e2e测试

问题描述

我有一个问题。现在正在开发gql +测试e2e(对于测试e2e来说我是一个新手)如何测试创建mutaion

这是我的类别Product.e2e-spec.ts

describe('AppController (e2e)',() => {
  let app: InestApplication
  let apolloClient: ApolloServerTestClient

  beforeEach(async () => {
    const moduleFixture: TestingModule = await Test.createTestingModule({
      imports: [AppModule],}).compile()

    app = moduleFixture.createnestApplication()
    await app.init()

    const module: GraphQLModule = moduleFixture.get<GraphQLModule>(
      GraphQLModule,)
    // apolloServer is protected,we need to cast module to any to get it
    apolloClient = createTestClient((module as any).apolloServer)
  })

  const createCategoryProductObject = {
    name: 'testData',}
  const createCategoryProductQuery = `mutation {
    createCategoryProduct(input: ${createCategoryProductObject}) {
      name
    }
  }`

  it('getAllCategoryProduct',async () => {
    const { query } = apolloClient
    const result: any = await query({
      query: gql`
        query {
          getAllCategoryProduct {
            name
            id
          }
        }
      `,})
    console.log(result)
    expect(result)
  })
  it('createCategoryProduct',async () => {
    const { mutate } = apolloClient
    const result: any = await mutate({
      mutation: gql`
        ${createCategoryProductQuery}
      `,})
    expect(result)
  })
})
})

如您在我的getAllCategoryProduct我console.log(result)中看到的那样,我得到了正确的结果,并且一切正常,但是在createCategoryProduct中,我得到了一个错误

Unable to connect to the database. retrying (1)...
AlreadyHasActiveConnectionError: Cannot create a new connection named "default",because connection with such name already exist and it Now has an active connection session.

不确定为什么无法连接数据库

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...