Skip to content

Commit

Permalink
Tests (#61)
Browse files Browse the repository at this point in the history
* simple tests

* ui tests

* basic ui tests

* more tests

* more tests

* more tests

* more tests

* ad tests

* added postroll test
  • Loading branch information
yaniv-li authored and perelman committed Dec 5, 2018
1 parent 1477e9a commit 4f6d611
Show file tree
Hide file tree
Showing 23 changed files with 5,547 additions and 60 deletions.
10 changes: 8 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"presets": [
"latest"
"latest",
["env", {"modules": false}]
],
"plugins": [
"babel-plugin-transform-class-properties",
"babel-plugin-transform-object-rest-spread"
]
],
"env": {
"test": {
"plugins": ["transform-es2015-modules-commonjs"]
}
}
}
13 changes: 11 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ module.exports = {
"browser": true,
"node": true,
"commonjs": true,
"es6": true
"es6": true,
"jest": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
Expand All @@ -15,9 +16,17 @@ module.exports = {
"sourceType": "module"
},
"plugins": [
"jest"
],
"globals": {
"VERSION": true
"VERSION": true,
page: true,
browser: true,
context: true,
jestPuppeteer: true,
RequestInterceptor: true,
RequestSpy: true,
ResponseFaker: true
},
"rules": {
"accessor-pairs": "error",
Expand Down
14 changes: 14 additions & 0 deletions jest-puppeteer.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// workaround for find-process sudo
global.process.getuid = () => 0;
module.exports = {
server: {
command: 'node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack/puppeteer.config.js',
port: 3000,
launchTimeout: 200000
},
launch: {
headless: true
},
browserContext: 'default'

};
184 changes: 184 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
// For a detailed explanation regarding each configuration property, visit:
// https://jestjs.io/docs/en/configuration.html

module.exports = {
// All imported modules in your tests should be mocked automatically
// automock: false,

// Stop running tests after the first failure
// bail: false,

// Respect "browser" field in package.json when resolving modules
// browser: false,

// The directory where Jest should store its cached dependency information
// cacheDirectory: "/tmp/jest_rs",

// Automatically clear mock calls and instances between every test
// clearMocks: false,

// Indicates whether the coverage information should be collected while executing the test
// collectCoverage: false,

// An array of glob patterns indicating a set of files for which coverage information should be collected
// collectCoverageFrom: null,

// The directory where Jest should output its coverage files
coverageDirectory: "coverage",

// An array of regexp pattern strings used to skip coverage collection
// coveragePathIgnorePatterns: [
// "/node_modules/"
// ],

// A list of reporter names that Jest uses when writing coverage reports
// coverageReporters: [
// "json",
// "text",
// "lcov",
// "clover"
// ],

// An object that configures minimum threshold enforcement for coverage results
// coverageThreshold: null,

// Make calling deprecated APIs throw helpful error messages
// errorOnDeprecated: false,

// Force coverage collection from ignored files usin a array of glob patterns
// forceCoverageMatch: [],

// A path to a module which exports an async function that is triggered once before all test suites
// globalSetup: null,

// A path to a module which exports an async function that is triggered once after all test suites
// globalTeardown: null,

// A set of global variables that need to be available in all test environments
globals: {
window: true
},

// An array of directory names to be searched recursively up from the requiring module's location
moduleDirectories: [
"node_modules",
],

// An array of file extensions your modules use
// moduleFileExtensions: [
// "js",
// "json",
// "jsx",
// "node"
// ],

// A map from regular expressions to module names that allow to stub out resources with a single module
moduleNameMapper: {
"cloudinary-core": "<rootDir>/test/mocks/cloudinary-core-mock.js"
},

// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
// modulePathIgnorePatterns: [],

// Activates notifications for test results
// notify: false,

// An enum that specifies notification mode. Requires { notify: true }
// notifyMode: "always",

// A preset that is used as a base for Jest's configuration
preset: "jest-puppeteer",

// Run tests from one or more projects
// projects: null,

// Use this configuration option to add custom reporters to Jest
// reporters: undefined,

// Automatically reset mock state between every test
// resetMocks: false,

// Reset the module registry before running each individual test
// resetModules: false,

// A path to a custom resolver
// resolver: null,

// Automatically restore mock state between every test
// restoreMocks: false,

// The root directory that Jest should scan for tests and modules within
// rootDir: null,

// A list of paths to directories that Jest should use to search for files in
// roots: [
// "<rootDir>"
// ],

// Allows you to use a custom runner instead of Jest's default test runner
// runner: "jest-runner",

// The paths to modules that run some code to configure or set up the testing environment before each test
// setupFiles: [],

// The path to a module that runs some code to configure or set up the testing framework before each test
// setupTestFrameworkScriptFile: null,

// A list of paths to snapshot serializer modules Jest should use for snapshot testing
// snapshotSerializers: [],

// The test environment that will be used for testing
// testEnvironment: "node",

// Options that will be passed to the testEnvironment
// testEnvironmentOptions: {},

// Adds a location field to test results
// testLocationInResults: false,

// The glob patterns Jest uses to detect test files
// testMatch: [
// "**/__tests__/**/*.js?(x)",
// "**/?(*.)+(spec|test).js?(x)"
// ],

// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
// testPathIgnorePatterns: [
// "/node_modules/"
// ],

// The regexp pattern Jest uses to detect test files
// testRegex: "",

// This option allows the use of a custom results processor
// testResultsProcessor: null,

// This option allows use of a custom test runner
// testRunner: "jasmine2",

// This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
// testURL: "http://localhost",

// Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
// timers: "real",

// A map from regular expressions to paths to transformers
// transform: null,

// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
// transformIgnorePatterns: [
// "/node_modules/"
// ],

// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
// unmockedModulePathPatterns: undefined,

// Indicates whether each individual test should be reported during the run
// verbose: null,

// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
// watchPathIgnorePatterns: [],

// Whether to use watchman for file crawling
watchman: false
};
13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"predeploy": "deploy=true npm run build-all",
"deploy": "deploy=true node webpack/deploy.js",
"postdeploy": "git push origin master --follow-tags",
"dry:deploy": "node webpack/deploy.js dry"
"dry:deploy": "node webpack/deploy.js dry",
"test": "jest --no-cache --detectOpenHandles"
},
"author": "Cloudinary",
"license": "MIT",
Expand All @@ -42,13 +43,16 @@
"wolfy87-eventemitter": "^5.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^6.7.2",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^23.6.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.22.0",
"clean-webpack-plugin": "^0.1.15",
"compass-mixins": "^0.12.10",
Expand All @@ -57,12 +61,19 @@
"deep-assign": "^2.0.0",
"eslint": "^3.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-jest": "^21.22.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-puppeteer": "^3.4.0",
"jest-webpack": "^0.5.1",
"json-loader": "^0.5.4",
"node-sass": "^4.7.2",
"postcss-loader": "^1.3.0",
"puppeteer": "^1.8.0",
"puppeteer-request-spy": "^1.1.2",
"raw-loader": "0.5.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.0",
Expand Down
4 changes: 3 additions & 1 deletion static/examples/analytics.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h3 class="text-primary">Example Code:</h3>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
})(window,document,'script','https://www.google-analytics.com/analytics_debug.js','ga');

ga('create', 'UA-99366171-1', 'auto');
ga('send', 'pageview');
Expand All @@ -138,9 +138,11 @@ <h3 class="text-primary">Example Code:</h3>
events: [
'play',
'pause',
'volumechange',
{ type: 'percentsplayed', percents: [10, 50, 75, 100] }, // Some events may have additional settings
'start',
'ended',
'seek',
'fullscreenchange'
]
}
Expand Down
9 changes: 7 additions & 2 deletions static/examples/vast-vpaid.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,16 @@ <h3 class="text-primary mt-5">Example Code:</h3>
<script type="text/javascript">
var cld = cloudinary.Cloudinary.new({ cloud_name: 'miki-cloudinary' });

var adTagUrl = "https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/ad_rule_samples&ciu_szs=300x250&ad_rule=1&impl=s&gdfp_req=1&env=vp&output=vmap&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ar%3Dpremidpost&cmsid=496&vid=short_onecue&correlator="
// var adTagUrl = "https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/ad_rule_samples&ciu_szs=300x250&ad_rule=1&impl=s&gdfp_req=1&env=vp&output=vmap&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ar%3Dpremidpost&cmsid=496&vid=short_onecue&correlator="
var adTagUrl = "https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/ad_rule_samples&ciu_szs=300x250&ad_rule=1&impl=s&gdfp_req=1&env=vp&output=vmap&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ar%3Dpremidpostoptimizedpod&cmsid=496&vid=short_onecue&correlator=";

// Initialize player
var player = cld.videoPlayer('example-player', {
ads: { adTagUrl: adTagUrl }
ads: {
adTagUrl: adTagUrl,
timeout: 15000,
prerollTimeout: 15000
}
});

/* player.on('sourcechanged', () => {
Expand Down
31 changes: 31 additions & 0 deletions test/ads.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
describe('Ads tests', () => {
beforeEach(async () => {
await page.setViewport({ width: 1280, height: 800 });
await page.goto('http://localhost:3000/vast-vpaid.html', { waitUntil: 'load' });
await page.evaluate(() => {
Object.defineProperty(HTMLMediaElement.prototype, 'playing', {
get: function() {
return !!(this.currentTime > 0 && !this.paused && !this.ended &&
this.readyState > 2);
}
});
});
await page.evaluate(() => (window.ev = []));
await page.evaluate(() => player.on('readyforpreroll', () => {
window.ev.push('preroll');
}));
await page.evaluate(() => player.on('readyforpostroll', () => {
window.ev.push('postroll');
}));
}, 10000);
it('event test', async () => {
jest.setTimeout(65000);
await page.waitFor(1000);
let duration = await page.evaluate(() => player.duration());
await page.waitFor(duration * 1000 + 1000);
let events = await page.evaluate(() => window.ev);
expect(events.includes('preroll')).toEqual(true);
expect(events.includes('postroll')).toEqual(true);
});

});
Loading

0 comments on commit 4f6d611

Please sign in to comment.