Skip to content

Commit ba3a27f

Browse files
committed
Merged in task/dspace-cris-2023_02_x/DSC-2184-alignment-7.6.3 (pull request DSpace#3021)
Task/dspace cris 2023 02 x/DSC-2184 alignment 7.6.3
2 parents 0f4963c + f9b8e39 commit ba3a27f

439 files changed

Lines changed: 11713 additions & 5390 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ name: Build
77
on: [push, pull_request]
88

99
permissions:
10-
contents: read # to fetch code (actions/checkout)
10+
contents: read # to fetch code (actions/checkout)
11+
packages: read # to fetch private images from GitHub Container Registry (GHCR)
1112

1213
jobs:
1314
tests:
@@ -35,10 +36,13 @@ jobs:
3536
NODE_OPTIONS: '--max-old-space-size=4096'
3637
# Project name to use when running "docker compose" prior to e2e tests
3738
COMPOSE_PROJECT_NAME: 'ci'
39+
# Docker Registry to use for Docker compose scripts below.
40+
# We use GitHub's Container Registry to avoid aggressive rate limits at DockerHub.
41+
DOCKER_REGISTRY: ghcr.io
3842
strategy:
3943
# Create a matrix of Node versions to test against (in parallel)
4044
matrix:
41-
node-version: [16.x, 18.x]
45+
node-version: [18.x, 20.x]
4246
# Do NOT exit immediately if one matrix job fails
4347
fail-fast: false
4448
# These are the actual CI steps to perform per job
@@ -108,6 +112,14 @@ jobs:
108112
path: 'coverage/dspace-angular/lcov.info'
109113
retention-days: 14
110114

115+
# Login to our Docker registry, so that we can access private Docker images using "docker compose" below.
116+
- name: Login to ${{ env.DOCKER_REGISTRY }}
117+
uses: docker/login-action@v3
118+
with:
119+
registry: ${{ env.DOCKER_REGISTRY }}
120+
username: ${{ github.repository_owner }}
121+
password: ${{ secrets.GITHUB_TOKEN }}
122+
111123
# Using "docker compose" start backend using CI configuration
112124
# and load assetstore from a cached copy
113125
- name: Start DSpace REST Backend via Docker (for e2e tests)

.github/workflows/docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ on:
1616
pull_request:
1717

1818
permissions:
19-
contents: read # to fetch code (actions/checkout)
19+
contents: read # to fetch code (actions/checkout)
20+
packages: write # to write images to GitHub Container Registry (GHCR)
2021

2122
jobs:
2223
#############################################################

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This image will be published as dspace/dspace-angular
22
# See https://github.com/DSpace/dspace-angular/tree/main/docker for usage details
33

4-
FROM node:18-alpine
4+
FROM docker.io/node:18-alpine
55

66
# Ensure Python and other build tools are available
77
# These are needed to install some node modules, especially on linux/arm64
@@ -24,5 +24,5 @@ ENV NODE_OPTIONS="--max_old_space_size=4096"
2424
# Listen / accept connections from all IP addresses.
2525
# NOTE: At this time it is only possible to run Docker container in Production mode
2626
# if you have a public URL. See https://github.com/DSpace/dspace-angular/issues/1485
27-
ENV NODE_ENV development
27+
ENV NODE_ENV=development
2828
CMD yarn serve --host 0.0.0.0

Dockerfile.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Test build:
55
# docker build -f Dockerfile.dist -t dspace/dspace-angular:dspace-7_x-dist .
66

7-
FROM node:18-alpine as build
7+
FROM docker.io/node:18-alpine AS build
88

99
# Ensure Python and other build tools are available
1010
# These are needed to install some node modules, especially on linux/arm64
@@ -26,6 +26,6 @@ COPY --chown=node:node docker/dspace-ui.json /app/dspace-ui.json
2626

2727
WORKDIR /app
2828
USER node
29-
ENV NODE_ENV production
29+
ENV NODE_ENV=production
3030
EXPOSE 4000
3131
CMD pm2-runtime start dspace-ui.json --json

angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
"ngx-export-as",
3535
"url-parse",
3636
"uuid",
37-
"webfontloader",
3837
"xlsx",
3938
"zone.js"
4039
],

config/config.example.yml

Lines changed: 53 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: will log all redux actions and transfers in console
22
debug: false
33

4-
# Angular Universal server settings
4+
# Angular User Inteface settings
55
# NOTE: these settings define where Node.js will start your UI application. Therefore, these
66
# "ui" settings usually specify a localhost port/URL which is later proxied to a public URL (using Apache or similar)
77
ui:
@@ -17,12 +17,34 @@ ui:
1717
# Trust X-FORWARDED-* headers from proxies (default = true)
1818
useProxies: true
1919

20+
# Angular Universal / Server Side Rendering (SSR) settings
2021
universal:
21-
# Whether to inline "critical" styles into the server-side rendered HTML.
22-
# Determining which styles are critical is a relatively expensive operation;
23-
# this option can be disabled to boost server performance at the expense of
24-
# loading smoothness. For improved SSR performance, DSpace defaults this to false (disabled).
22+
# Whether to tell Angular to inline "critical" styles into the server-side rendered HTML.
23+
# Determining which styles are critical is a relatively expensive operation; this option is
24+
# disabled (false) by default to boost server performance at the expense of loading smoothness.
2525
inlineCriticalCss: false
26+
# Path prefixes to enable SSR for. By default these are limited to paths of primary DSpace objects.
27+
# NOTE: The "/handle/" path ensures Handle redirects work via SSR. The "/reload/" path ensures
28+
# hard refreshes (e.g. after login) trigger SSR while fully reloading the page.
29+
paths: [ '/home', '/items/', '/entities/', '/collections/', '/communities/', '/bitstream/', '/bitstreams/', '/handle/', '/reload/' ]
30+
# Whether to enable rendering of Search component on SSR.
31+
# If set to true the component will be included in the HTML returned from the server side rendering.
32+
# If set to false the component will not be included in the HTML returned from the server side rendering.
33+
enableSearchComponent: false
34+
# Whether to enable rendering of Browse component on SSR.
35+
# If set to true the component will be included in the HTML returned from the server side rendering.
36+
# If set to false the component will not be included in the HTML returned from the server side rendering.
37+
enableBrowseComponent: false
38+
# Enable state transfer from the server-side application to the client-side application.
39+
# Defaults to true.
40+
# Note: When using an external application cache layer, it's recommended not to transfer the state to avoid caching it.
41+
# Disabling it ensures that dynamic state information is not inadvertently cached, which can improve security and
42+
# ensure that users always use the most up-to-date state.
43+
transferState: true
44+
# When a different REST base URL is used for the server-side application, the generated state contains references to
45+
# REST resources with the internal URL configured. By default, these internal URLs are replaced with public URLs.
46+
# Disable this setting to avoid URL replacement during SSR. In this the state is not transferred to avoid security issues.
47+
replaceRestUrl: true
2648

2749
# The REST API server settings
2850
# NOTE: these settings define which (publicly available) REST API to use. They are usually
@@ -33,6 +55,9 @@ rest:
3355
port: 443
3456
# NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
3557
nameSpace: /server
58+
# Provide a different REST url to be used during SSR execution. It must contain the whole url including protocol, server port and
59+
# server namespace (uncomment to use it).
60+
#ssrBaseUrl: http://localhost:8080/server
3661

3762
# Caching settings
3863
cache:
@@ -431,6 +456,29 @@ comcolSelectionSort:
431456
sortField: 'dc.title'
432457
sortDirection: 'ASC'
433458

459+
# Live Region configuration
460+
# Live Region as defined by w3c, https://www.w3.org/TR/wai-aria-1.1/#terms:
461+
# Live regions are perceivable regions of a web page that are typically updated as a
462+
# result of an external event when user focus may be elsewhere.
463+
#
464+
# The DSpace live region is a component present at the bottom of all pages that is invisible by default, but is useful
465+
# for screen readers. Any message pushed to the live region will be announced by the screen reader. These messages
466+
# usually contain information about changes on the page that might not be in focus.
467+
liveRegion:
468+
# The duration after which messages disappear from the live region in milliseconds
469+
messageTimeOutDurationMs: 30000
470+
# The visibility of the live region. Setting this to true is only useful for debugging purposes.
471+
isVisible: false
472+
473+
474+
# Search settings
475+
search:
476+
# Number used to render n UI elements called loading skeletons that act as placeholders.
477+
# These elements indicate that some content will be loaded in their stead.
478+
# Since we don't know how many filters will be loaded before we receive a response from the server we use this parameter for the skeletons count.
479+
# e.g. If we set 5 then 5 loading skeletons will be visualized before the actual filters are retrieved.
480+
defaultFiltersCount: 5
481+
434482
crisLayout:
435483
urn:
436484
- name: doi

cypress.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineConfig } from 'cypress';
22

33
export default defineConfig({
4+
video: true,
45
videosFolder: 'cypress/videos',
56
screenshotsFolder: 'cypress/screenshots',
67
fixturesFolder: 'cypress/fixtures',
@@ -18,6 +19,7 @@ export default defineConfig({
1819

1920
// Admin account used for administrative tests
2021
DSPACE_TEST_ADMIN_USER: 'dspacedemo+admin@gmail.com',
22+
DSPACE_TEST_ADMIN_USER_UUID: '335647b6-8a52-4ecb-a8c1-7ebabb199bda',
2123
DSPACE_TEST_ADMIN_PASSWORD: 'dspace',
2224
// Community/collection/publication used for view/edit tests
2325
DSPACE_TEST_COMMUNITY: '0958c910-2037-42a9-81c7-dca80e3892b4',
@@ -33,6 +35,8 @@ export default defineConfig({
3335
// Account used to test basic submission process
3436
DSPACE_TEST_SUBMIT_USER: 'dspacedemo+submit@gmail.com',
3537
DSPACE_TEST_SUBMIT_USER_PASSWORD: 'dspace',
38+
// Administrator users group
39+
DSPACE_ADMINISTRATOR_GROUP: 'e59f5659-bff9-451e-b28f-439e7bd467e4'
3640
},
3741
e2e: {
3842
// Setup our plugins for e2e tests
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import { testA11y } from 'cypress/support/utils';
2+
3+
describe('Admin Add New Modals', () => {
4+
beforeEach(() => {
5+
// Must login as an Admin for sidebar to appear
6+
cy.visit('/login');
7+
cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
8+
});
9+
10+
it('Add new Community modal should pass accessibility tests', () => {
11+
// Pin the sidebar open
12+
cy.get('#sidebar-collapse-toggle').trigger('mouseover');
13+
cy.get('#sidebar-collapse-toggle').click();
14+
15+
// Click on entry of menu
16+
cy.get('#admin-menu-section-new-title').should('be.visible');
17+
cy.get('#admin-menu-section-new-title').click();
18+
19+
cy.get('a[data-test="menu.section.new_community"]').click();
20+
21+
// Analyze <ds-create-community-parent-selector> for accessibility
22+
testA11y('ds-create-community-parent-selector');
23+
});
24+
25+
it('Add new Collection modal should pass accessibility tests', () => {
26+
// Pin the sidebar open
27+
cy.get('#sidebar-collapse-toggle').trigger('mouseover');
28+
cy.get('#sidebar-collapse-toggle').click();
29+
30+
// Click on entry of menu
31+
cy.get('#admin-menu-section-new-title').should('be.visible');
32+
cy.get('#admin-menu-section-new-title').click();
33+
34+
cy.get('a[data-test="menu.section.new_collection"]').click();
35+
36+
// Analyze <ds-create-collection-parent-selector> for accessibility
37+
testA11y('ds-create-collection-parent-selector');
38+
});
39+
40+
it('Add new Item modal should pass accessibility tests', () => {
41+
// Pin the sidebar open
42+
cy.get('#sidebar-collapse-toggle').trigger('mouseover');
43+
cy.get('#sidebar-collapse-toggle').click();
44+
45+
// Click on entry of menu
46+
cy.get('#admin-menu-section-new-title').should('be.visible');
47+
cy.get('#admin-menu-section-new-title').click();
48+
49+
cy.get('a[data-test="menu.section.new_item"]').click();
50+
51+
// Analyze <ds-create-item-parent-selector> for accessibility
52+
testA11y('ds-create-item-parent-selector');
53+
});
54+
});
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { testA11y } from 'cypress/support/utils';
2+
3+
describe('Admin Curation Tasks', () => {
4+
beforeEach(() => {
5+
// Must login as an Admin to see the page
6+
cy.visit('/admin/curation-tasks');
7+
cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
8+
});
9+
10+
it('should pass accessibility tests', () => {
11+
// Page must first be visible
12+
cy.get('ds-admin-curation-task').should('be.visible');
13+
// Analyze <ds-admin-curation-task> for accessibility issues
14+
testA11y('ds-admin-curation-task');
15+
});
16+
});
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import { testA11y } from 'cypress/support/utils';
2+
3+
describe('Admin Edit Modals', () => {
4+
beforeEach(() => {
5+
// Must login as an Admin for sidebar to appear
6+
cy.visit('/login');
7+
cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
8+
});
9+
10+
it('Edit Community modal should pass accessibility tests', () => {
11+
// Pin the sidebar open
12+
cy.get('#sidebar-collapse-toggle').trigger('mouseover');
13+
cy.get('#sidebar-collapse-toggle').click();
14+
15+
// Click on entry of menu
16+
cy.get('#admin-menu-section-edit-title').should('be.visible');
17+
cy.get('#admin-menu-section-edit-title').click();
18+
19+
cy.get('a[data-test="menu.section.edit_community"]').click();
20+
21+
// Analyze <ds-edit-community-selector> for accessibility
22+
testA11y('ds-edit-community-selector');
23+
});
24+
25+
it('Edit Collection modal should pass accessibility tests', () => {
26+
// Pin the sidebar open
27+
cy.get('#sidebar-collapse-toggle').trigger('mouseover');
28+
cy.get('#sidebar-collapse-toggle').click();
29+
30+
// Click on entry of menu
31+
cy.get('#admin-menu-section-edit-title').should('be.visible');
32+
cy.get('#admin-menu-section-edit-title').click();
33+
34+
cy.get('a[data-test="menu.section.edit_collection"]').click();
35+
36+
// Analyze <ds-edit-collection-selector> for accessibility
37+
testA11y('ds-edit-collection-selector');
38+
});
39+
40+
it('Edit Item modal should pass accessibility tests', () => {
41+
// Pin the sidebar open
42+
cy.get('#sidebar-collapse-toggle').trigger('mouseover');
43+
cy.get('#sidebar-collapse-toggle').click();
44+
45+
// Click on entry of menu
46+
cy.get('#admin-menu-section-edit-title').should('be.visible');
47+
cy.get('#admin-menu-section-edit-title').click();
48+
49+
cy.get('a[data-test="menu.section.edit_item"]').click();
50+
51+
// Analyze <ds-edit-item-selector> for accessibility
52+
testA11y('ds-edit-item-selector');
53+
});
54+
});

0 commit comments

Comments
 (0)