@eeacms/volto-embed 4.0.4 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@ const defaultBabel = require('@plone/volto/babel');
2
2
 
3
3
  function applyDefault(api) {
4
4
  const voltoBabel = defaultBabel(api);
5
- voltoBabel.plugins.push('@babel/plugin-transform-modules-commonjs', 'transform-class-properties', 'istanbul');
5
+ voltoBabel.plugins.push('istanbul');
6
6
  return voltoBabel;
7
7
  }
8
8
 
@@ -0,0 +1 @@
1
+ module.exports = require('@plone/volto/babel');
@@ -0,0 +1,48 @@
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+
4
+ const projectRootPath = fs.existsSync('./project')
5
+ ? fs.realpathSync('./project')
6
+ : fs.realpathSync('./../../../');
7
+ const packageJson = require(path.join(projectRootPath, 'package.json'));
8
+ const jsConfig = require(path.join(projectRootPath, 'jsconfig.json')).compilerOptions;
9
+
10
+ const pathsConfig = jsConfig.paths;
11
+
12
+ let voltoPath = path.join(projectRootPath, 'node_modules/@plone/volto');
13
+
14
+ Object.keys(pathsConfig).forEach(pkg => {
15
+ if (pkg === '@plone/volto') {
16
+ voltoPath = `./${jsConfig.baseUrl}/${pathsConfig[pkg][0]}`;
17
+ }
18
+ });
19
+ const AddonConfigurationRegistry = require(`${voltoPath}/addon-registry.js`);
20
+ const reg = new AddonConfigurationRegistry(projectRootPath);
21
+
22
+ // Extends ESlint configuration for adding the aliases to `src` directories in Volto addons
23
+ const addonAliases = Object.keys(reg.packages).map(o => [
24
+ o,
25
+ reg.packages[o].modulePath,
26
+ ]);
27
+
28
+
29
+ module.exports = {
30
+ extends: `${projectRootPath}/node_modules/@plone/volto/.eslintrc`,
31
+ settings: {
32
+ 'import/resolver': {
33
+ alias: {
34
+ map: [
35
+ ['@plone/volto', '@plone/volto/src'],
36
+ ...addonAliases,
37
+ ['@package', `${__dirname}/src`],
38
+ ['~', `${__dirname}/src`],
39
+ ],
40
+ extensions: ['.js', '.jsx', '.json'],
41
+ },
42
+ 'babel-plugin-root-import': {
43
+ rootPathSuffix: 'src',
44
+ },
45
+ },
46
+ },
47
+ };
48
+
package/CHANGELOG.md CHANGED
@@ -4,11 +4,27 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [4.0.4](https://github.com/eea/volto-embed/compare/4.0.3...4.0.4) - 19 October 2022
7
+ ### [5.0.1](https://github.com/eea/volto-embed/compare/5.0.0...5.0.1) - 25 January 2023
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - update .project.eslintrc.js [Miu Razvan - [`628fd40`](https://github.com/eea/volto-embed/commit/628fd402b00d075ce319b9be92ff5f0e4d0ca2c4)]
12
+ - rename schema.jsx [Miu Razvan - [`62794e3`](https://github.com/eea/volto-embed/commit/62794e398eab5117132e5622cab735f6cf4f79fd)]
13
+ - improving code quality as per sonarqube reported issues [tedw87 - [`c7842f7`](https://github.com/eea/volto-embed/commit/c7842f7795f344e9d30538ddf2da04e97e319ebe)]
14
+ - Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`fe3a2de`](https://github.com/eea/volto-embed/commit/fe3a2de6180796c3d6b569733d2b9365a669c23e)]
15
+ ## [5.0.0](https://github.com/eea/volto-embed/compare/4.0.4...5.0.0) - 31 October 2022
8
16
 
9
17
  #### :hammer_and_wrench: Others
10
18
 
11
- - Apply privacy container height only on privacy check. Default to auto [andreiggr - [`93a03fa`](https://github.com/eea/volto-embed/commit/93a03fa01f924d051c5e217f2ba2edf59cf58055)]
19
+ - Typo [Miu Razvan - [`aaea4a5`](https://github.com/eea/volto-embed/commit/aaea4a5c1b29d84e52209cc4da1ad9f0212f74d2)]
20
+ - Bring this up to date [Miu Razvan - [`420b820`](https://github.com/eea/volto-embed/commit/420b8207aa7c06140b6af9c088e86b41f1695112)]
21
+ - fix cypress [nileshgulia1 - [`aa73a44`](https://github.com/eea/volto-embed/commit/aa73a44583d95b1e95b030fce19561d4152be408)]
22
+ - Update Jenkinsfile [Nilesh - [`3e1e578`](https://github.com/eea/volto-embed/commit/3e1e57806916ca63cc4a950889057d283a3f60d5)]
23
+ - latest volto compatibility [nileshgulia1 - [`9e3b20e`](https://github.com/eea/volto-embed/commit/9e3b20e4c357bfd9f7a04a4c80472db9257b8727)]
24
+ - update(slate): add @plone/volto-slate resolver and update imports refs- #153447 [nileshgulia1 - [`1877b8f`](https://github.com/eea/volto-embed/commit/1877b8f8f56128e1c8cf6334643a514750057dfd)]
25
+ - remove(volto-slate) -refs #153447 [nileshgulia1 - [`41b95a0`](https://github.com/eea/volto-embed/commit/41b95a09dcef66551448b3964aadea9a5826171f)]
26
+ ### [4.0.4](https://github.com/eea/volto-embed/compare/4.0.3...4.0.4) - 19 October 2022
27
+
12
28
  ### [4.0.3](https://github.com/eea/volto-embed/compare/4.0.2...4.0.3) - 7 October 2022
13
29
 
14
30
  #### :hammer_and_wrench: Others
package/README.md CHANGED
@@ -64,78 +64,7 @@ See `src/Iframe/ViewIframe` for details on how to implement.
64
64
 
65
65
  ## Release
66
66
 
67
- ### Automatic release using Jenkins
68
-
69
- * The automatic release is started by creating a [Pull Request](../../compare/master...develop) from `develop` to `master`. The pull request status checks correlated to the branch and PR Jenkins jobs need to be processed successfully. 1 review from a github user with rights is mandatory.
70
- * It runs on every commit on `master` branch, which is protected from direct commits, only allowing pull request merge commits.
71
- * The automatic release is done by [Jenkins](https://ci.eionet.europa.eu). The status of the release job can be seen both in the Readme.md badges and the green check/red cross/yellow circle near the last commit information. If you click on the icon, you will have the list of checks that were run. The `continuous-integration/jenkins/branch` link goes to the Jenkins job execution webpage.
72
- * Automated release scripts are located in the `eeacms/gitflow` docker image, specifically [js-release.sh](https://github.com/eea/eea.docker.gitflow/blob/master/src/js-release.sh) script. It uses the `release-it` tool.
73
- * As long as a PR request is open from develop to master, the PR Jenkins job will automatically re-create the CHANGELOG.md and package.json files to be production-ready.
74
- * The version format must be MAJOR.MINOR.PATCH. By default, next release is set to next minor version (with patch 0).
75
- * You can manually change the version in `package.json`. The new version must not be already present in the tags/releases of the repository, otherwise it will be automatically increased by the script. Any changes to the version will trigger a `CHANGELOG.md` re-generation.
76
- * Automated commits and commits with [JENKINS] or [YARN] in the commit log are excluded from `CHANGELOG.md` file.
77
-
78
- ### Manual release from the develop branch ( beta release )
79
-
80
- #### Installation and configuration of release-it
81
-
82
- You need to first install the [release-it](https://github.com/release-it/release-it) client.
83
-
84
- ```
85
- npm install -g release-it
86
- ```
87
-
88
- Release-it uses the configuration written in the [`.release-it.json`](./.release-it.json) file located in the root of the repository.
89
-
90
- Release-it is a tool that automates 4 important steps in the release process:
91
-
92
- 1. Version increase in `package.json` ( increased from the current version in `package.json`)
93
- 2. `CHANGELOG.md` automatic generation from commit messages ( grouped by releases )
94
- 3. GitHub release on the commit with the changelog and package.json modification on the develop branch
95
- 4. NPM release ( by default it's disabled, but can be enabled in the configuration file )
96
-
97
- To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens)
98
-
99
- ```
100
- export GITHUB_TOKEN=XXX-XXXXXXXXXXXXXXXXXXXXXX
101
- ```
102
-
103
- To configure npm, you can use the `npm login` command or use a configuration file with a TOKEN :
104
-
105
- ```
106
- echo "//registry.npmjs.org/:_authToken=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYY" > .npmrc
107
- ```
108
-
109
- #### Using release-it tool
110
-
111
- There are 3 yarn scripts that can be run to do the release
112
-
113
- ##### yarn release-beta
114
-
115
- Automatically calculates and presents 3 beta versions - patch, minor and major for you to choose ( or Other for manual input).
116
-
117
- ```
118
- ? Select increment (next version):
119
- ❯ prepatch (0.1.1-beta.0)
120
- preminor (0.2.0-beta.0)
121
- premajor (1.0.0-beta.0)
122
- Other, please specify...
123
- ```
124
-
125
- ##### yarn release-major-beta
126
-
127
- Same as `yarn release-beta`, but with premajor version pre-selected.
128
-
129
- ##### yarn release
130
-
131
- Generic command, does not automatically add the `beta` to version, but you can still manually write it if you choose Other.
132
-
133
- #### Important notes
134
-
135
- > Do not use release-it tool on master branch, the commit on CHANGELOG.md file and the version increase in the package.json file can't be done without a PULL REQUEST.
136
-
137
- > Do not keep Pull Requests from develop to master branches open when you are doing beta releases from the develop branch. As long as a PR to master is open, an automatic script will run on every commit and will update both the version and the changelog to a production-ready state - ( MAJOR.MINOR.PATCH mandatory format for version).
138
-
67
+ See [RELEASE.md](https://github.com/eea/volto-embed/blob/master/RELEASE.md).
139
68
 
140
69
  ## How to contribute
141
70
 
@@ -150,4 +79,4 @@ See [LICENSE.md](https://github.com/eea/volto-embed/blob/master/LICENSE.md) for
150
79
 
151
80
  ## Funding
152
81
 
153
- [European Environment Agency (EU)](http://eea.europa.eu)
82
+ [European Environment Agency (EU)](http://eea.europa.eu)
package/RELEASE.md ADDED
@@ -0,0 +1,74 @@
1
+ ## Release
2
+
3
+ ### Automatic release using Jenkins
4
+
5
+ * The automatic release is started by creating a [Pull Request](../../compare/master...develop) from `develop` to `master`. The pull request status checks correlated to the branch and PR Jenkins jobs need to be processed successfully. 1 review from a github user with rights is mandatory.
6
+ * It runs on every commit on `master` branch, which is protected from direct commits, only allowing pull request merge commits.
7
+ * The automatic release is done by [Jenkins](https://ci.eionet.europa.eu). The status of the release job can be seen both in the Readme.md badges and the green check/red cross/yellow circle near the last commit information. If you click on the icon, you will have the list of checks that were run. The `continuous-integration/jenkins/branch` link goes to the Jenkins job execution webpage.
8
+ * Automated release scripts are located in the `eeacms/gitflow` docker image, specifically [js-release.sh](https://github.com/eea/eea.docker.gitflow/blob/master/src/js-release.sh) script. It uses the `release-it` tool.
9
+ * As long as a PR request is open from develop to master, the PR Jenkins job will automatically re-create the CHANGELOG.md and package.json files to be production-ready.
10
+ * The version format must be MAJOR.MINOR.PATCH. By default, next release is set to next minor version (with patch 0).
11
+ * You can manually change the version in `package.json`. The new version must not be already present in the tags/releases of the repository, otherwise it will be automatically increased by the script. Any changes to the version will trigger a `CHANGELOG.md` re-generation.
12
+ * Automated commits and commits with [JENKINS] or [YARN] in the commit log are excluded from `CHANGELOG.md` file.
13
+
14
+ ### Manual release from the develop branch ( beta release )
15
+
16
+ #### Installation and configuration of release-it
17
+
18
+ You need to first install the [release-it](https://github.com/release-it/release-it) client.
19
+
20
+ ```
21
+ npm install -g release-it
22
+ ```
23
+
24
+ Release-it uses the configuration written in the [`.release-it.json`](./.release-it.json) file located in the root of the repository.
25
+
26
+ Release-it is a tool that automates 4 important steps in the release process:
27
+
28
+ 1. Version increase in `package.json` ( increased from the current version in `package.json`)
29
+ 2. `CHANGELOG.md` automatic generation from commit messages ( grouped by releases )
30
+ 3. GitHub release on the commit with the changelog and package.json modification on the develop branch
31
+ 4. NPM release ( by default it's disabled, but can be enabled in the configuration file )
32
+
33
+ To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens)
34
+
35
+ ```
36
+ export GITHUB_TOKEN=XXX-XXXXXXXXXXXXXXXXXXXXXX
37
+ ```
38
+
39
+ To configure npm, you can use the `npm login` command or use a configuration file with a TOKEN :
40
+
41
+ ```
42
+ echo "//registry.npmjs.org/:_authToken=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYY" > .npmrc
43
+ ```
44
+
45
+ #### Using release-it tool
46
+
47
+ There are 3 yarn scripts that can be run to do the release
48
+
49
+ ##### yarn release-beta
50
+
51
+ Automatically calculates and presents 3 beta versions - patch, minor and major for you to choose ( or Other for manual input).
52
+
53
+ ```
54
+ ? Select increment (next version):
55
+ ❯ prepatch (0.1.1-beta.0)
56
+ preminor (0.2.0-beta.0)
57
+ premajor (1.0.0-beta.0)
58
+ Other, please specify...
59
+ ```
60
+
61
+ ##### yarn release-major-beta
62
+
63
+ Same as `yarn release-beta`, but with premajor version pre-selected.
64
+
65
+ ##### yarn release
66
+
67
+ Generic command, does not automatically add the `beta` to version, but you can still manually write it if you choose Other.
68
+
69
+ #### Important notes
70
+
71
+ > Do not use release-it tool on master branch, the commit on CHANGELOG.md file and the version increase in the package.json file can't be done without a PULL REQUEST.
72
+
73
+ > Do not keep Pull Requests from develop to master branches open when you are doing beta releases from the develop branch. As long as a PR to master is open, an automatic script will run on every commit and will update both the version and the changelog to a production-ready state - ( MAJOR.MINOR.PATCH mandatory format for version).
74
+
@@ -0,0 +1,17 @@
1
+ module.exports = function (api) {
2
+ api.cache(true);
3
+ const presets = ['razzle'];
4
+ const plugins = [
5
+ [
6
+ 'react-intl', // React Intl extractor, required for the whole i18n infrastructure to work
7
+ {
8
+ messagesDir: './build/messages/',
9
+ },
10
+ ],
11
+ ];
12
+
13
+ return {
14
+ plugins,
15
+ presets,
16
+ };
17
+ };
@@ -0,0 +1,26 @@
1
+ const { defineConfig } = require('cypress');
2
+
3
+ module.exports = defineConfig({
4
+ viewportWidth: 1280,
5
+ defaultCommandTimeout: 8888,
6
+ chromeWebSecurity: false,
7
+ reporter: 'junit',
8
+ video: true,
9
+ retries: {
10
+ runMode: 8,
11
+ openMode: 0,
12
+ },
13
+ reporterOptions: {
14
+ mochaFile: 'cypress/reports/cypress-[hash].xml',
15
+ jenkinsMode: true,
16
+ toConsole: true,
17
+ },
18
+ e2e: {
19
+ setupNodeEvents(on, config) {
20
+ // e2e testing node events setup code
21
+ require('@cypress/code-coverage/task')(on, config);
22
+ return config;
23
+ },
24
+ baseUrl: 'http://localhost:3000',
25
+ },
26
+ });
@@ -9,20 +9,28 @@ module.exports = {
9
9
  '@plone/volto/babel': '<rootDir>/node_modules/@plone/volto/babel',
10
10
  '@plone/volto/(.*)$': '<rootDir>/node_modules/@plone/volto/src/$1',
11
11
  '@package/(.*)$': '<rootDir>/src/$1',
12
+ '@root/(.*)$': '<rootDir>/src/$1',
12
13
  '@plone/volto-quanta/(.*)$': '<rootDir>/src/addons/volto-quanta/src/$1',
13
14
  '@eeacms/(.*?)/(.*)$': '<rootDir>/src/addons/$1/src/$2',
14
- 'volto-slate/(.*)$': '<rootDir>/src/addons/volto-slate/src/$1',
15
+ '@plone/volto-slate':
16
+ '<rootDir>/node_modules/@plone/volto/packages/volto-slate/src',
15
17
  '~/(.*)$': '<rootDir>/src/$1',
16
18
  'load-volto-addons':
17
19
  '<rootDir>/node_modules/@plone/volto/jest-addons-loader.js',
20
+ '\\.(css|less|scss|sass)$': 'identity-obj-proxy',
18
21
  },
19
22
  transform: {
20
23
  '^.+\\.js(x)?$': 'babel-jest',
21
- '^.+\\.css$': 'jest-css-modules',
22
- '^.+\\.less$': 'jest-css-modules',
23
- '^.+\\.scss$': 'jest-css-modules',
24
24
  '^.+\\.(png)$': 'jest-file',
25
25
  '^.+\\.(jpg)$': 'jest-file',
26
26
  '^.+\\.(svg)$': './node_modules/@plone/volto/jest-svgsystem-transform.js',
27
27
  },
28
+ coverageThreshold: {
29
+ global: {
30
+ branches: 5,
31
+ functions: 5,
32
+ lines: 5,
33
+ statements: 5,
34
+ },
35
+ },
28
36
  };
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-embed",
3
- "version": "4.0.4",
3
+ "version": "5.0.1",
4
4
  "description": "Embed external content",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -16,17 +16,16 @@
16
16
  ],
17
17
  "addons": [
18
18
  "@eeacms/volto-corsproxy",
19
- "@eeacms/volto-datablocks",
20
- "volto-slate"
19
+ "@eeacms/volto-datablocks"
21
20
  ],
22
21
  "dependencies": {
23
- "volto-slate": "*",
24
- "@eeacms/volto-datablocks": "*",
25
22
  "@eeacms/volto-corsproxy": "*",
23
+ "@eeacms/volto-datablocks": "*",
26
24
  "react-visibility-sensor": "5.1.1"
27
25
  },
28
26
  "devDependencies": {
29
- "@cypress/code-coverage": "^3.9.5",
27
+ "@cypress/code-coverage": "^3.10.0",
28
+ "@plone/scripts": "*",
30
29
  "babel-plugin-transform-class-properties": "^6.24.1",
31
30
  "md5": "^2.3.0"
32
31
  },
@@ -16,8 +16,10 @@ import clearSVG from '@plone/volto/icons/clear.svg';
16
16
  import aheadSVG from '@plone/volto/icons/ahead.svg';
17
17
  import mapsBlockSVG from '@plone/volto/components/manage/Blocks/Maps/block-maps.svg';
18
18
  import schema from './schema';
19
- import { addPrivacyProtectionToSchema } from '../PrivacyProtection';
20
- import { PrivacyProtection } from '../PrivacyProtection';
19
+ import {
20
+ PrivacyProtection,
21
+ addPrivacyProtectionToSchema,
22
+ } from '../PrivacyProtection';
21
23
 
22
24
  const messages = defineMessages({
23
25
  MapsBlockInputPlaceholder: {
@@ -1,4 +1,4 @@
1
- const IframeSchema = {
1
+ const schema = {
2
2
  title: 'Embed external content',
3
3
 
4
4
  fieldsets: [
@@ -23,4 +23,4 @@ const IframeSchema = {
23
23
  required: ['url'],
24
24
  };
25
25
 
26
- export default IframeSchema;
26
+ export default schema;
@@ -1,14 +1,17 @@
1
1
  import React, { useState } from 'react';
2
2
  import { compose } from 'redux';
3
- import { useSelector } from 'react-redux';
3
+ import { useSelector, useDispatch } from 'react-redux';
4
4
  import VisibilitySensor from 'react-visibility-sensor';
5
- import { Placeholder, Dimmer, Loader } from 'semantic-ui-react';
5
+ import {
6
+ Placeholder,
7
+ Dimmer,
8
+ Loader,
9
+ Button,
10
+ Checkbox,
11
+ } from 'semantic-ui-react';
6
12
  import { withCookies } from 'react-cookie';
7
- //import { find, without } from 'lodash';
8
- import { serializeNodes } from 'volto-slate/editor/render';
9
- import { Button, Checkbox } from 'semantic-ui-react';
13
+ import { serializeNodes } from '@plone/volto-slate/editor/render';
10
14
  import { defineMessages, injectIntl } from 'react-intl';
11
- import { useDispatch } from 'react-redux';
12
15
  import { toast } from 'react-toastify';
13
16
  import config from '@plone/volto/registry';
14
17
  import { getBaseUrl } from '@plone/volto/helpers';
package/Jenkinsfile DELETED
@@ -1,242 +0,0 @@
1
- pipeline {
2
- agent any
3
-
4
- environment {
5
- GIT_NAME = "volto-embed"
6
- NAMESPACE = "@eeacms"
7
- SONARQUBE_TAGS = "volto.eea.europa.eu,climate-energy.eea.europa.eu,forest.eea.europa.eu,water.europa.eu-freshwater,biodiversity.europa.eu,water.europa.eu-marine"
8
- DEPENDENCIES = "volto-slate"
9
- VOLTO = "16.0.0-alpha.14"
10
- }
11
-
12
- stages {
13
-
14
- stage('Release') {
15
- when {
16
- allOf {
17
- environment name: 'CHANGE_ID', value: ''
18
- branch 'master'
19
- }
20
- }
21
- steps {
22
- node(label: 'docker') {
23
- withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GITHUB_TOKEN'),string(credentialsId: 'eea-jenkins-npm-token', variable: 'NPM_TOKEN')]) {
24
- sh '''docker pull eeacms/gitflow'''
25
- sh '''docker run -i --rm --name="$BUILD_TAG-gitflow-master" -e GIT_BRANCH="$BRANCH_NAME" -e GIT_NAME="$GIT_NAME" -e GIT_TOKEN="$GITHUB_TOKEN" -e NPM_TOKEN="$NPM_TOKEN" -e LANGUAGE=javascript eeacms/gitflow'''
26
- }
27
- }
28
- }
29
- }
30
-
31
- stage('Code') {
32
- when {
33
- allOf {
34
- environment name: 'CHANGE_ID', value: ''
35
- not { changelog '.*^Automated release [0-9\\.]+$' }
36
- not { branch 'master' }
37
- }
38
- }
39
- steps {
40
- parallel(
41
-
42
- "ES lint": {
43
- node(label: 'docker') {
44
- sh '''docker run -i --rm --name="$BUILD_TAG-eslint" -e NAMESPACE="$NAMESPACE" -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" plone/volto-addon-ci eslint'''
45
- }
46
- },
47
-
48
- "Style lint": {
49
- node(label: 'docker') {
50
- sh '''docker run -i --rm --name="$BUILD_TAG-stylelint" -e NAMESPACE="$NAMESPACE" -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" plone/volto-addon-ci stylelint'''
51
- }
52
- },
53
-
54
- "Prettier": {
55
- node(label: 'docker') {
56
- sh '''docker run -i --rm --name="$BUILD_TAG-prettier" -e NAMESPACE="$NAMESPACE" -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" plone/volto-addon-ci prettier'''
57
- }
58
- }
59
- )
60
- }
61
- }
62
-
63
- stage('Tests') {
64
- when {
65
- allOf {
66
- environment name: 'CHANGE_ID', value: ''
67
- anyOf {
68
- not { changelog '.*^Automated release [0-9\\.]+$' }
69
- branch 'master'
70
- }
71
- }
72
- }
73
- steps {
74
- parallel(
75
-
76
- "Volto": {
77
- node(label: 'docker') {
78
- script {
79
- try {
80
- sh '''docker pull plone/volto-addon-ci'''
81
- sh '''docker run -i --name="$BUILD_TAG-volto" -e NAMESPACE="$NAMESPACE" -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" plone/volto-addon-ci'''
82
- sh '''rm -rf xunit-reports'''
83
- sh '''mkdir -p xunit-reports'''
84
- sh '''docker cp $BUILD_TAG-volto:/opt/frontend/my-volto-project/coverage xunit-reports/'''
85
- sh '''docker cp $BUILD_TAG-volto:/opt/frontend/my-volto-project/junit.xml xunit-reports/'''
86
- sh '''docker cp $BUILD_TAG-volto:/opt/frontend/my-volto-project/unit_tests_log.txt xunit-reports/'''
87
- stash name: "xunit-reports", includes: "xunit-reports/**"
88
- archiveArtifacts artifacts: "xunit-reports/unit_tests_log.txt", fingerprint: true
89
- publishHTML (target : [
90
- allowMissing: false,
91
- alwaysLinkToLastBuild: true,
92
- keepAll: true,
93
- reportDir: 'xunit-reports/coverage/lcov-report',
94
- reportFiles: 'index.html',
95
- reportName: 'UTCoverage',
96
- reportTitles: 'Unit Tests Code Coverage'
97
- ])
98
- } finally {
99
- catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') {
100
- junit testResults: 'xunit-reports/junit.xml', allowEmptyResults: true
101
- }
102
- sh script: '''docker rm -v $BUILD_TAG-volto''', returnStatus: true
103
- }
104
- }
105
- }
106
- }
107
- )
108
- }
109
- }
110
-
111
- stage('Integration tests') {
112
- when {
113
- allOf {
114
- environment name: 'CHANGE_ID', value: ''
115
- anyOf {
116
- not { changelog '.*^Automated release [0-9\\.]+$' }
117
- branch 'master'
118
- }
119
- }
120
- }
121
- steps {
122
- parallel(
123
-
124
- "Cypress": {
125
- node(label: 'docker') {
126
- script {
127
- try {
128
- sh '''docker pull eeacms/plone-backend; docker run -d --rm --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend'''
129
- sh '''docker pull plone/volto-addon-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e NAMESPACE="$NAMESPACE" -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" -e DEPENDENCIES="$DEPENDENCIES" -e NODE_ENV=development -e VOLTO="$VOLTO" plone/volto-addon-ci cypress'''
130
- } finally {
131
- try {
132
- sh '''rm -rf cypress-reports cypress-results cypress-coverage'''
133
- sh '''mkdir -p cypress-reports cypress-results cypress-coverage'''
134
- sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/src/addons/$GIT_NAME/cypress/videos cypress-reports/'''
135
- sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/src/addons/$GIT_NAME/cypress/reports cypress-results/'''
136
- coverage = sh script: '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/src/addons/$GIT_NAME/coverage cypress-coverage/''', returnStatus: true
137
- if ( coverage == 0 ) {
138
- publishHTML (target : [allowMissing: false,
139
- alwaysLinkToLastBuild: true,
140
- keepAll: true,
141
- reportDir: 'cypress-coverage/coverage/lcov-report',
142
- reportFiles: 'index.html',
143
- reportName: 'CypressCoverage',
144
- reportTitles: 'Integration Tests Code Coverage'])
145
- }
146
- sh '''touch empty_file; for ok_test in $(grep -E 'file=.*failures="0"' $(grep 'testsuites .*failures="0"' $(find cypress-results -name *.xml) empty_file | awk -F: '{print $1}') empty_file | sed 's/.* file="\\(.*\\)" time.*/\\1/' | sed 's#^cypress/integration/##g' | sed 's#^../../../node_modules/@eeacms/##g'); do rm -f cypress-reports/videos/$ok_test.mp4; rm -f cypress-reports/$ok_test.mp4; done'''
147
- archiveArtifacts artifacts: 'cypress-reports/**/*.mp4', fingerprint: true, allowEmptyArchive: true
148
- stash name: "cypress-coverage", includes: "cypress-coverage/**", allowEmpty: true
149
- }
150
- finally {
151
- catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') {
152
- junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true
153
- }
154
- sh script: "docker stop $BUILD_TAG-plone", returnStatus: true
155
- sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true
156
- sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true
157
-
158
- }
159
- }
160
- }
161
- }
162
- }
163
-
164
- )
165
- }
166
- }
167
-
168
- stage('Report to SonarQube') {
169
- when {
170
- allOf {
171
- environment name: 'CHANGE_ID', value: ''
172
- anyOf {
173
- branch 'master'
174
- allOf {
175
- branch 'develop'
176
- not { changelog '.*^Automated release [0-9\\.]+$' }
177
- }
178
- }
179
- }
180
- }
181
- steps {
182
- node(label: 'swarm') {
183
- script{
184
- checkout scm
185
- unstash "xunit-reports"
186
- unstash "cypress-coverage"
187
- def scannerHome = tool 'SonarQubeScanner';
188
- def nodeJS = tool 'NodeJS';
189
- withSonarQubeEnv('Sonarqube') {
190
- sh '''sed -i "s#/opt/frontend/my-volto-project/src/addons/${GIT_NAME}/##g" xunit-reports/coverage/lcov.info'''
191
- sh "export PATH=${scannerHome}/bin:${nodeJS}/bin:$PATH; sonar-scanner -Dsonar.javascript.lcov.reportPaths=./xunit-reports/coverage/lcov.info,./cypress-coverage/coverage/lcov.info -Dsonar.sources=./src -Dsonar.projectKey=$GIT_NAME-$BRANCH_NAME -Dsonar.projectVersion=$BRANCH_NAME-$BUILD_NUMBER"
192
- sh '''try=2; while [ \$try -gt 0 ]; do curl -s -XPOST -u "${SONAR_AUTH_TOKEN}:" "${SONAR_HOST_URL}api/project_tags/set?project=${GIT_NAME}-${BRANCH_NAME}&tags=${SONARQUBE_TAGS},${BRANCH_NAME}" > set_tags_result; if [ \$(grep -ic error set_tags_result ) -eq 0 ]; then try=0; else cat set_tags_result; echo "... Will retry"; sleep 60; try=\$(( \$try - 1 )); fi; done'''
193
- }
194
- }
195
- }
196
- }
197
- }
198
-
199
- stage('Pull Request') {
200
- when {
201
- not {
202
- environment name: 'CHANGE_ID', value: ''
203
- }
204
- environment name: 'CHANGE_TARGET', value: 'master'
205
- }
206
- steps {
207
- node(label: 'docker') {
208
- script {
209
- if ( env.CHANGE_BRANCH != "develop" ) {
210
- error "Pipeline aborted due to PR not made from develop branch"
211
- }
212
- withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GITHUB_TOKEN')]) {
213
- sh '''docker pull eeacms/gitflow'''
214
- sh '''docker run -i --rm --name="$BUILD_TAG-gitflow-pr" -e GIT_CHANGE_TARGET="$CHANGE_TARGET" -e GIT_CHANGE_BRANCH="$CHANGE_BRANCH" -e GIT_CHANGE_AUTHOR="$CHANGE_AUTHOR" -e GIT_CHANGE_TITLE="$CHANGE_TITLE" -e GIT_TOKEN="$GITHUB_TOKEN" -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" -e GIT_ORG="$GIT_ORG" -e GIT_NAME="$GIT_NAME" -e LANGUAGE=javascript eeacms/gitflow'''
215
- }
216
- }
217
- }
218
- }
219
- }
220
-
221
- }
222
-
223
- post {
224
- always {
225
- cleanWs(cleanWhenAborted: true, cleanWhenFailure: true, cleanWhenNotBuilt: true, cleanWhenSuccess: true, cleanWhenUnstable: true, deleteDirs: true)
226
- }
227
- changed {
228
- script {
229
- def details = """<h1>${env.JOB_NAME} - Build #${env.BUILD_NUMBER} - ${currentBuild.currentResult}</h1>
230
- <p>Check console output at <a href="${env.BUILD_URL}/display/redirect">${env.JOB_BASE_NAME} - #${env.BUILD_NUMBER}</a></p>
231
- """
232
- emailext(
233
- subject: '$DEFAULT_SUBJECT',
234
- body: details,
235
- attachLog: true,
236
- compressLog: true,
237
- recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'CulpritsRecipientProvider']]
238
- )
239
- }
240
- }
241
- }
242
- }
Binary file
@@ -1,5 +0,0 @@
1
- {
2
- "name": "Using fixtures to represent data",
3
- "email": "hello@cypress.io",
4
- "body": "Fixtures are a great way to mock data for responses to routes"
5
- }
@@ -1,25 +0,0 @@
1
- import { openSidebar, closeSidebar } from '../index';
2
-
3
- export const changePageTitle = (title) => {
4
- cy.get('.documentFirstHeading > .public-DraftStyleDefault-block')
5
- .clear()
6
- .type(title)
7
- .get('.documentFirstHeading span[data-text]')
8
- .contains(title);
9
- cy.get('.documentFirstHeading > .public-DraftStyleDefault-block').type(
10
- '{enter}',
11
- );
12
- };
13
-
14
- export const addBlock = (groupTitle, groupId, blockId) => {
15
- closeSidebar();
16
- cy.get('.ui.basic.icon.button.block-add-button').first().click();
17
- cy.get('.blocks-chooser .title').contains(groupTitle).click();
18
- cy.get(`.content.active.${groupId} .button.${blockId}`).click();
19
- cy.get(`#page-edit div.block-editor-${blockId}`);
20
- openSidebar();
21
- };
22
-
23
- export const selectBlock = (blockId) => {
24
- cy.get(`#page-edit div.block-editor-${blockId}`).click();
25
- };
@@ -1,2 +0,0 @@
1
- export { openSidebar, closeSidebar, openSidebarTab } from './sidebar';
2
- export { changePageTitle, addBlock, selectBlock } from './blocks';
@@ -1,36 +0,0 @@
1
- export const openSidebar = () => {
2
- cy.get('#sidebar > div.sidebar-container').then(($sidebar) => {
3
- if ($sidebar.hasClass('collapsed')) {
4
- cy.get('#sidebar > div.sidebar-container > button.ui.button.trigger')
5
- .first()
6
- .click();
7
- }
8
- });
9
- };
10
-
11
- export const closeSidebar = () => {
12
- cy.get('#sidebar > div.sidebar-container').then(($sidebar) => {
13
- if (!$sidebar.hasClass('collapsed')) {
14
- cy.get('#sidebar > div.sidebar-container > button.ui.button.trigger')
15
- .first()
16
- .click();
17
- }
18
- });
19
- };
20
-
21
- export const openSidebarTab = (tab) => {
22
- openSidebar();
23
- cy.get(
24
- '#sidebar > div.sidebar-container div.ui.pointing.secondary.attached.tabular.formtabs.menu > a.item',
25
- )
26
- .contains(tab)
27
- .then(($tab) => {
28
- if (!$tab.hasClass('active')) {
29
- cy.get(
30
- '#sidebar > div.sidebar-container div.ui.pointing.secondary.attached.tabular.formtabs.menu > a.item',
31
- )
32
- .contains(tab)
33
- .click();
34
- }
35
- });
36
- };
@@ -1,64 +0,0 @@
1
- import { setupBeforeEach, tearDownAfterEach } from '../support';
2
- import { changePageTitle, addBlock, selectBlock } from '../helpers';
3
- import { openSidebarTab } from '../helpers';
4
- import 'cypress-file-upload';
5
-
6
- const group = {
7
- title: 'Common',
8
- id: 'common',
9
- };
10
-
11
- const blocksIds = ['maps'];
12
-
13
- describe('Blocks Tests', () => {
14
- beforeEach(setupBeforeEach);
15
- afterEach(tearDownAfterEach);
16
-
17
- it('Add Block: Empty', () => {
18
- changePageTitle('Volto embed');
19
- blocksIds.forEach((id) => {
20
- addBlock(group.title, group.id, id);
21
- selectBlock('maps');
22
- openSidebarTab('Block');
23
- cy.get('#sidebar-properties header > h2')
24
- .first()
25
- .contains('Embed external content');
26
-
27
- cy.get('.field-wrapper-privacy_statement-0-dataprotection p')
28
- .first()
29
- .clear()
30
- .type('Test text for privacy protection');
31
- cy.get('.field-wrapper-privacy_cookie_key-1-dataprotection');
32
- cy.get('.field-wrapper-enabled-2-dataprotection .checkbox').click();
33
-
34
- const imageFile = 'cat.jpg';
35
- cy.get(
36
- '.field-wrapper-background_image-3-dataprotection .dropzone-placeholder',
37
- ).attachFile(imageFile);
38
- const embed_url =
39
- '<div class="mapouter"><div class="gmap_canvas"><iframe width="600" height="500" id="gmap_canvas" src="https://maps.google.com/maps?q=2880%20Broadway,%20New%20York&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a href="https://www.embedgooglemap.net/blog/divi-discount-code-elegant-themes-coupon/"></a><br></div></div>';
40
- cy.get('.block.maps input').click().type(embed_url, { force: true });
41
-
42
- cy.get('.block-editor-text').last().click();
43
- cy.get('.block-add-button').first().click();
44
- cy.get('.blocks-chooser .title').contains('Common').click();
45
- cy.get('.ui.basic.icon.button.maps').contains('Maps').click();
46
-
47
- cy.get('.align-widget.field-wrapper-align button').first().click();
48
- cy.get('.block.maps input')
49
- .last()
50
- .click()
51
- .type(embed_url, { force: true });
52
- cy.get(
53
- '.field-wrapper-background_image-3-dataprotection .dropzone-placeholder',
54
- ).attachFile(imageFile);
55
-
56
- // Save
57
- cy.get('#toolbar-save').click();
58
- cy.url().should('eq', Cypress.config().baseUrl + '/cypress/my-page');
59
-
60
- // then the page view should contain our changes
61
- // cy.get('.ui.loader');
62
- });
63
- });
64
- });
@@ -1,26 +0,0 @@
1
- /// <reference types="cypress" />
2
- // ***********************************************************
3
- // This example plugins/index.js can be used to load plugins
4
- //
5
- // You can change the location of this file or turn off loading
6
- // the plugins file with the 'pluginsFile' configuration option.
7
- //
8
- // You can read more here:
9
- // https://on.cypress.io/plugins-guide
10
- // ***********************************************************
11
-
12
- // This function is called when a project is opened or re-opened (e.g. due to
13
- // the project's config changing)
14
-
15
- /**
16
- * @type {Cypress.PluginConfig}
17
- */
18
- module.exports = (on, config) => {
19
- // `on` is used to hook into various events Cypress emits
20
- // `config` is the resolved Cypress config
21
- /* coverage-start
22
- require('@cypress/code-coverage/task')(on, config)
23
- on('file:preprocessor', require('@cypress/code-coverage/use-babelrc'))
24
- return config
25
- coverage-end */
26
- };
@@ -1,315 +0,0 @@
1
- /* eslint no-console: ["error", { allow: ["log"] }] */
2
-
3
- // --- AUTOLOGIN -------------------------------------------------------------
4
- Cypress.Commands.add('autologin', () => {
5
- let api_url, user, password;
6
- api_url = Cypress.env('API_PATH') || 'http://localhost:8080/Plone';
7
- user = 'admin';
8
- password = 'admin';
9
-
10
- return cy
11
- .request({
12
- method: 'POST',
13
- url: `${api_url}/@login`,
14
- headers: { Accept: 'application/json' },
15
- body: { login: user, password: password },
16
- })
17
- .then((response) => cy.setCookie('auth_token', response.body.token));
18
- });
19
-
20
- // --- CREATE CONTENT --------------------------------------------------------
21
- Cypress.Commands.add(
22
- 'createContent',
23
- ({
24
- contentType,
25
- contentId,
26
- contentTitle,
27
- path = '',
28
- allow_discussion = false,
29
- }) => {
30
- let api_url, auth;
31
- api_url = Cypress.env('API_PATH') || 'http://localhost:8080/Plone';
32
- auth = {
33
- user: 'admin',
34
- pass: 'admin',
35
- };
36
- if (contentType === 'File') {
37
- return cy.request({
38
- method: 'POST',
39
- url: `${api_url}/${path}`,
40
- headers: {
41
- Accept: 'application/json',
42
- },
43
- auth: auth,
44
- body: {
45
- '@type': contentType,
46
- id: contentId,
47
- title: contentTitle,
48
- file: {
49
- data: 'dGVzdGZpbGUK',
50
- encoding: 'base64',
51
- filename: 'lorem.txt',
52
- 'content-type': 'text/plain',
53
- },
54
- allow_discussion: allow_discussion,
55
- },
56
- });
57
- }
58
- if (contentType === 'Image') {
59
- return cy.request({
60
- method: 'POST',
61
- url: `${api_url}/${path}`,
62
- headers: {
63
- Accept: 'application/json',
64
- },
65
- auth: auth,
66
- body: {
67
- '@type': contentType,
68
- id: contentId,
69
- title: contentTitle,
70
- image: {
71
- data:
72
- 'iVBORw0KGgoAAAANSUhEUgAAANcAAAA4CAMAAABZsZ3QAAAAM1BMVEX29fK42OU+oMvn7u9drtIPisHI4OhstdWZyt4fkcXX5+sAg74umMhNp86p0eJ7vNiKw9v/UV4wAAAAAXRSTlMAQObYZgAABBxJREFUeF7tmuty4yAMhZG4X2zn/Z92J5tsBJwWXG/i3XR6frW2Y/SBLIRAfaQUDNt8E5tLUt9BycfcKfq3R6Mlfyimtx4rzp+K3dtibXkor99zsEqLYZltblTecciogoh+TXfY1Ve4dn07rCDGG9dHSEEOg/GmXl0U1XDxTKxNK5De7BxsyyBr6gGm2/vPxKJ8F6f7BXKfRMp1xIWK9A+5ks25alSb353dWnDJN1k35EL5f8dVGifTf/4tjUuuFq7u4srmXC60yAmldLXIWbg65RKU87lcGxJCFqUPv0IacW0PmSivOZFLE908inPToMmii/roG+MRV/O8FU88i8tFsxV3a06MFUw0Qu7RmAtdV5/HVVaOVMTWNOWSwMljLhzhcB6XIS7OK5V6AvRDNN7t5VJWQs1J40UmalbK56usBG/CuCHSYuc+rkUGeMCViNRARPrzW52N3oQLe6WifNliSuuGaH3czbVNudI9s7ZLUCLHVwWlyES522o1t14uvmbblmVTKqFjaZYJFSTPP4dLL1kU1z7p0lzdbRulmEWLxoQX+z9ce7A8GqEEucllLxePuZwdJl1Lezu0hoswvTPt61DrFcRuujV/2cmlxaGBC7Aw6cpovGANwRiSdOAWJ5AGy4gLL64dl0QhUEAuEUNws+XxV+OKGPdw/hESGYF9XEGaFC7sNLMSXWJjHsnanYi87VK428N2uxpOjOFANcagLM5l+7mSycM8KknZpKLcGi6jmzWGr/vLurZ/0g4u9AZuAoeb5r1ceQhyiTPY1E4wUR6u/F3H2ojSpXMMriBPT9cezTto8Cx+MsglHL4fv1Rxrb1LVw9yvyQpJ3AhFnLZfuRLH2QsOG3FGGD20X/th/u5bFAt16Bt308KjF+MNOXgl/SquIEySX3GhaZvc67KZbDxcCDORz2N8yCWPaY5lyQZO7lQ29fnZbt3Xu6qoge4+DjXl/MocySPOp9rlvdyznahRyHEYd77v3LhugOXDv4J65QXfl803BDAdaWBEDhfVx7nKofjoVCgxnUAqw/UAUDPn788BDvQuG4TDtdtUPvzjSlXAB8DvaDOhhrmhwbywylXAm8CvaouikJTL93gs3y7Yy4VYbIxOHrcMizPqWOjqO9l3Uz52kibQy4xxOgqhJvD+w5rvokOcAlGvNCfeqCv1ste1stzLm0f71Iq3ZfTrPfuE5nhPtF+LvQE2lffQC7pYtQy3tdzdrKvd5TLVVzDetScS3nEKmmwDyt1Cev1kX3YfbvzNK4fzrlw+cB6vm+uiUgf2zdXI62241LawCb7Pi5FXFPF8KpzDoF/Sw2lg+GrHNbno1mhPu+VCF/vfMnw06PnUl6j48dVHD3jHNHPua+fc3o/5yp/zsGi0vYtzi3Pz5mHd4T6BWMIlewacd63AAAAAElFTkSuQmCC',
73
- encoding: 'base64',
74
- filename: 'image.png',
75
- 'content-type': 'image/png',
76
- },
77
- },
78
- });
79
- }
80
- if (['Document', 'Folder', 'CMSFolder'].includes(contentType)) {
81
- return cy
82
- .request({
83
- method: 'POST',
84
- url: `${api_url}/${path}`,
85
- headers: {
86
- Accept: 'application/json',
87
- },
88
- auth: auth,
89
- body: {
90
- '@type': contentType,
91
- id: contentId,
92
- title: contentTitle,
93
- blocks: {
94
- 'd3f1c443-583f-4e8e-a682-3bf25752a300': { '@type': 'title' },
95
- '7624cf59-05d0-4055-8f55-5fd6597d84b0': { '@type': 'text' },
96
- },
97
- blocks_layout: {
98
- items: [
99
- 'd3f1c443-583f-4e8e-a682-3bf25752a300',
100
- '7624cf59-05d0-4055-8f55-5fd6597d84b0',
101
- ],
102
- },
103
- allow_discussion: allow_discussion,
104
- },
105
- })
106
- .then(() => console.log(`${contentType} created`));
107
- } else {
108
- return cy
109
- .request({
110
- method: 'POST',
111
- url: `${api_url}/${path}`,
112
- headers: {
113
- Accept: 'application/json',
114
- },
115
- auth: auth,
116
- body: {
117
- '@type': contentType,
118
- id: contentId,
119
- title: contentTitle,
120
- allow_discussion: allow_discussion,
121
- },
122
- })
123
- .then(() => console.log(`${contentType} created`));
124
- }
125
- },
126
- );
127
-
128
- // --- REMOVE CONTENT --------------------------------------------------------
129
- Cypress.Commands.add('removeContent', (path) => {
130
- let api_url, auth;
131
- api_url = Cypress.env('API_PATH') || 'http://localhost:8080/Plone';
132
- auth = {
133
- user: 'admin',
134
- pass: 'admin',
135
- };
136
- return cy
137
- .request({
138
- method: 'DELETE',
139
- url: `${api_url}/${path}`,
140
- headers: {
141
- Accept: 'application/json',
142
- },
143
- auth: auth,
144
- body: {},
145
- })
146
- .then(() => console.log(`${path} removed`));
147
- });
148
-
149
- // --- SET WORKFLOW ----------------------------------------------------------
150
- Cypress.Commands.add(
151
- 'setWorkflow',
152
- ({
153
- path = '/',
154
- actor = 'admin',
155
- review_state = 'publish',
156
- time = '1995-07-31T18:30:00',
157
- title = '',
158
- comment = '',
159
- effective = '2018-01-21T08:00:00',
160
- expires = '2019-01-21T08:00:00',
161
- include_children = true,
162
- }) => {
163
- let api_url, auth;
164
- api_url = Cypress.env('API_PATH') || 'http://localhost:8080/Plone';
165
- auth = {
166
- user: 'admin',
167
- pass: 'admin',
168
- };
169
- return cy.request({
170
- method: 'POST',
171
- url: `${api_url}/${path}/@workflow/${review_state}`,
172
- headers: {
173
- Accept: 'application/json',
174
- },
175
- auth: auth,
176
- body: {
177
- actor: actor,
178
- review_state: review_state,
179
- time: time,
180
- title: title,
181
- comment: comment,
182
- effective: effective,
183
- expires: expires,
184
- include_children: include_children,
185
- },
186
- });
187
- },
188
- );
189
-
190
- // --- waitForResourceToLoad ----------------------------------------------------------
191
- Cypress.Commands.add('waitForResourceToLoad', (fileName, type) => {
192
- const resourceCheckInterval = 40;
193
-
194
- return new Cypress.Promise((resolve) => {
195
- const checkIfResourceHasBeenLoaded = () => {
196
- const resource = cy
197
- .state('window')
198
- .performance.getEntriesByType('resource')
199
- .filter((entry) => !type || entry.initiatorType === type)
200
- .find((entry) => entry.name.includes(fileName));
201
-
202
- if (resource) {
203
- resolve();
204
-
205
- return;
206
- }
207
-
208
- setTimeout(checkIfResourceHasBeenLoaded, resourceCheckInterval);
209
- };
210
-
211
- checkIfResourceHasBeenLoaded();
212
- });
213
- });
214
-
215
- // Low level command reused by `setSelection` and low level command `setCursor`
216
- Cypress.Commands.add('selection', { prevSubject: true }, (subject, fn) => {
217
- cy.wrap(subject).trigger('mousedown').then(fn).trigger('mouseup');
218
-
219
- cy.document().trigger('selectionchange');
220
- return cy.wrap(subject);
221
- });
222
-
223
- Cypress.Commands.add(
224
- 'setSelection',
225
- { prevSubject: true },
226
- (subject, query, endQuery) => {
227
- return cy.wrap(subject).selection(($el) => {
228
- if (typeof query === 'string') {
229
- const anchorNode = getTextNode($el[0], query);
230
- const focusNode = endQuery ? getTextNode($el[0], endQuery) : anchorNode;
231
- const anchorOffset = anchorNode.wholeText.indexOf(query);
232
- const focusOffset = endQuery
233
- ? focusNode.wholeText.indexOf(endQuery) + endQuery.length
234
- : anchorOffset + query.length;
235
- setBaseAndExtent(anchorNode, anchorOffset, focusNode, focusOffset);
236
- } else if (typeof query === 'object') {
237
- const el = $el[0];
238
- const anchorNode = getTextNode(el.querySelector(query.anchorQuery));
239
- const anchorOffset = query.anchorOffset || 0;
240
- const focusNode = query.focusQuery
241
- ? getTextNode(el.querySelector(query.focusQuery))
242
- : anchorNode;
243
- const focusOffset = query.focusOffset || 0;
244
- setBaseAndExtent(anchorNode, anchorOffset, focusNode, focusOffset);
245
- }
246
- });
247
- },
248
- );
249
-
250
- // Low level command reused by `setCursorBefore` and `setCursorAfter`, equal to `setCursorAfter`
251
- Cypress.Commands.add(
252
- 'setCursor',
253
- { prevSubject: true },
254
- (subject, query, atStart) => {
255
- return cy.wrap(subject).selection(($el) => {
256
- const node = getTextNode($el[0], query);
257
- const offset =
258
- node.wholeText.indexOf(query) + (atStart ? 0 : query.length);
259
- const document = node.ownerDocument;
260
- document.getSelection().removeAllRanges();
261
- document.getSelection().collapse(node, offset);
262
- });
263
- // Depending on what you're testing, you may need to chain a `.click()` here to ensure
264
- // further commands are picked up by whatever you're testing (this was required for Slate, for example).
265
- },
266
- );
267
-
268
- Cypress.Commands.add(
269
- 'setCursorBefore',
270
- { prevSubject: true },
271
- (subject, query) => {
272
- cy.wrap(subject).setCursor(query, true);
273
- },
274
- );
275
-
276
- Cypress.Commands.add(
277
- 'setCursorAfter',
278
- { prevSubject: true },
279
- (subject, query) => {
280
- cy.wrap(subject).setCursor(query);
281
- },
282
- );
283
-
284
- // Helper functions
285
- function getTextNode(el, match) {
286
- const walk = document.createTreeWalker(el, NodeFilter.SHOW_TEXT, null, false);
287
- if (!match) {
288
- return walk.nextNode();
289
- }
290
-
291
- let node;
292
- while ((node = walk.nextNode())) {
293
- if (node.wholeText.includes(match)) {
294
- return node;
295
- }
296
- }
297
- }
298
-
299
- function setBaseAndExtent(...args) {
300
- const document = args[0].ownerDocument;
301
- document.getSelection().removeAllRanges();
302
- document.getSelection().setBaseAndExtent(...args);
303
- }
304
-
305
- Cypress.Commands.add('navigate', (route = '') => {
306
- return cy.window().its('appHistory').invoke('push', route);
307
- });
308
-
309
- Cypress.Commands.add('store', () => {
310
- return cy.window().its('store').invoke('getStore', '');
311
- });
312
-
313
- Cypress.Commands.add('settings', (key, value) => {
314
- return cy.window().its('settings');
315
- });
@@ -1,53 +0,0 @@
1
- // ***********************************************************
2
- // This example support/index.js is processed and
3
- // loaded automatically before your test files.
4
- //
5
- // This is a great place to put global configuration and
6
- // behavior that modifies Cypress.
7
- //
8
- // You can change the location of this file or turn off
9
- // automatically serving support files with the
10
- // 'supportFile' configuration option.
11
- //
12
- // You can read more here:
13
- // https://on.cypress.io/configuration
14
- // ***********************************************************
15
-
16
- // Import commands.js using ES2015 syntax:
17
- import './commands';
18
-
19
- // Alternatively you can use CommonJS syntax:
20
- // require('./commands')
21
-
22
- /* coverage-start
23
- //Generate code-coverage
24
- import '@cypress/code-coverage/support';
25
- coverage-end */
26
-
27
- export const setupBeforeEach = () => {
28
- cy.autologin();
29
- cy.createContent({
30
- contentType: 'Document',
31
- contentId: 'cypress',
32
- contentTitle: 'Cypress',
33
- });
34
- cy.createContent({
35
- contentType: 'Document',
36
- contentId: 'my-page',
37
- contentTitle: 'My Page',
38
- path: 'cypress',
39
- });
40
- cy.visit('/cypress/my-page');
41
- cy.waitForResourceToLoad('@navigation');
42
- cy.waitForResourceToLoad('@breadcrumbs');
43
- cy.waitForResourceToLoad('@actions');
44
- cy.waitForResourceToLoad('@types');
45
- cy.waitForResourceToLoad('my-page');
46
- cy.navigate('/cypress/my-page/edit');
47
- cy.get(`.block.title [data-contents]`);
48
- };
49
-
50
- export const tearDownAfterEach = () => {
51
- cy.autologin();
52
- cy.removeContent('cypress');
53
- };
package/cypress.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "baseUrl": "http://localhost:3000",
3
- "viewportWidth": 1280,
4
- "defaultCommandTimeout": 8888,
5
- "reporter": "junit",
6
- "video": true,
7
- "reporterOptions": {
8
- "mochaFile": "cypress/reports/cypress-[hash].xml",
9
- "jenkinsMode": true,
10
- "toConsole": true
11
- },
12
- "chromeWebSecurity": false,
13
- "retries": {
14
- "runMode": 8,
15
- "openMode": 0
16
- }
17
- }