mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
4b5b3de11c
- these agent files are all very similar and should be grouped together - moving them into a subfolder makes the `test/utils` folder a little bit easier to browse
34 lines
819 B
JavaScript
34 lines
819 B
JavaScript
const TestAgent = require('./test-agent');
|
|
const DataGenerator = require('../fixtures/data-generator');
|
|
|
|
const defaultContentAPISecretKey = DataGenerator.Content.api_keys[1].secret;
|
|
|
|
/**
|
|
* @constructor
|
|
* @param {Object} app Ghost express app instance
|
|
* @param {Object} options
|
|
* @param {String} options.apiURL
|
|
* @param {String} options.originURL
|
|
*/
|
|
class ContentAPITestAgent extends TestAgent {
|
|
constructor(app, options) {
|
|
super(app, options);
|
|
}
|
|
|
|
async authenticateWithSecret(secret) {
|
|
this.defaults.queryParams = {
|
|
key: secret
|
|
};
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @description Authenticate with default content api keys
|
|
*/
|
|
authenticate() {
|
|
return this.authenticateWithSecret(defaultContentAPISecretKey);
|
|
}
|
|
}
|
|
|
|
module.exports = ContentAPITestAgent;
|