import request from 'supertest'
import { generateSimpleViteManifest, mockApp, mockConfig, mockFetch } from './util.js'
import { expect } from 'chai'
import * as td from 'testdouble'
import { Response } from 'node-fetch'
import sinon from 'sinon'

const sandbox = sinon.createSandbox()

describe('Redis', function () {
  let app
  let spy

  beforeEach(async function () {
    // no redis mock!!
    await import('../src/create-queues.js').then(({ default: createQueues }) => createQueues())
    mockConfig({ urls: ['http://ui-server/'] })
    mockFetch({
      'http://ui-server': {
        '/manifest.json': generateSimpleViteManifest({}),
        '/example.js': spy = sandbox.spy(() => {
          return new Response('this is example', { headers: { 'content-type': 'application/javascript' } })
        })
      }
    })
    app = await mockApp()
  })

  afterEach(async function () {
    td.reset()
  })

  it('use internal cache, when redis is disabled', async function () {
    expect(spy.callCount).to.equal(0)
    let response = await request(app).get('/example.js')
    expect(response.statusCode).to.equal(200)
    expect(spy.callCount).to.equal(1)
    response = await request(app).get('/example.js')
    expect(response.statusCode).to.equal(200)
    expect(spy.callCount).to.equal(1)
  })
})