@adobe/aio-lib-web
Version:
Utility tooling library to build and deploy Adobe I/O Project Firefly app static sites to CDN
112 lines (99 loc) • 3.1 kB
JavaScript
/*
Copyright 2021 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
const path = require('path')
const fs = require('fs-extra')
const fetch = require('node-fetch')
jest.setTimeout(30000)
// load .env values in the e2e folder, if any
require('dotenv').config({ path: path.join(__dirname, '.env') })
const bundle = require('../src/bundle')
const deployWeb = require('../src/deploy-web')
const undeployWeb = require('../src/undeploy-web')
const ENTRY_FILE = path.join(__dirname, 'sample-app/index.html')
const DEST_FOLDER = path.join(__dirname, 'dist/')
const CACHE_FILE = path.join(__dirname, '.cache')
const SRC_REGEX = /<script.*src="(?<src>.*?)"/
const config = {
app: {
hasFrontend: true,
hostname: 'adobeio-static.net'
},
s3: {
tvmUrl: 'https://firefly-tvm.adobe.io', // default tvm url
credsCacheFile: CACHE_FILE,
folder: process.env.RUNTIME_NAMESPACE
},
ow: {
namespace: process.env.RUNTIME_NAMESPACE,
auth: process.env.RUNTIME_AUTH
},
web: {
distProd: DEST_FOLDER
}
}
beforeAll(async () => {
jest.setTimeout(240000)
})
/**
* Test bundler
*/
describe('e2e', () => {
let url
test('check bundle output dir', async () => {
let error
let parcelBundle
try {
parcelBundle = await bundle(
ENTRY_FILE,
DEST_FOLDER,
{}
)
await parcelBundle.run()
} catch (e) {
error = e
console.error(e)
}
expect(error).toBeUndefined()
expect(fs.existsSync(path.join(DEST_FOLDER, 'index.html'))).toBe(true)
const html = fs.readFileSync(path.join(DEST_FOLDER, 'index.html'), 'utf8')
const { src } = SRC_REGEX.exec(html).groups
expect(src).not.toBeNull()
expect(fs.existsSync(path.join(DEST_FOLDER, src))).toBe(true)
expect(fs.existsSync(path.join(DEST_FOLDER, `${src}.map`))).toBe(true)
})
test('bundle and deploy test ui', async () => {
let error, contents
try {
url = await deployWeb(config)
const response = await fetch(url)
contents = await response.text()
} catch (e) {
error = e
console.error(e)
}
expect(error).toBeUndefined()
expect(url).not.toBeNull()
expect(contents).not.toBeNull()
expect(contents).toEqual(fs.readFileSync(path.join(DEST_FOLDER, 'index.html'), 'utf8'))
})
test('undeploy', async () => {
let error, response
try {
await undeployWeb(config)
response = await fetch(url)
} catch (e) {
error = e
console.error(e)
}
expect(error).toBeUndefined()
expect(response.status).toEqual(404)
})
})