Skip to content

Commit e74c800

Browse files
committed
PROCESS: Link document may be tested with cypress-cucumber (see #199).
1 parent 4653cd5 commit e74c800

File tree

8 files changed

+54
-80
lines changed

8 files changed

+54
-80
lines changed

features/create_glose_from_existing_glose.feature

-44
This file was deleted.

features/step_definitions/context.rb

-23
Original file line numberDiff line numberDiff line change
@@ -73,26 +73,3 @@
7373
expect(page).to have_image license
7474
end
7575

76-
Soit("une glose intitulée {string} contenant :") do |title, markdown|
77-
click_on_icon('create-document')
78-
click_on_text('metadata')
79-
fill_element('textarea', "dc_title: #{title}")
80-
leave_textarea
81-
click_on_text('content')
82-
fill_element('textarea', markdown)
83-
leave_textarea
84-
end
85-
86-
Soit("un document dont je suis l'auteur intitulé {string} et contenant :") do |title, markdown|
87-
visit '/'
88-
sign_in('alice', 'whiterabbit')
89-
click_on_icon('create-document')
90-
click_on_text('metadata')
91-
fill_element('textarea', "dc_title: #{title}")
92-
leave_textarea
93-
click_on_text('content')
94-
fill_element('textarea', markdown)
95-
leave_textarea
96-
sign_out
97-
end
98-

features/step_definitions/event.rb

-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
Quand('je me focalise sur {string}') do |title|
2-
click_on_icon_next_to('focus', title)
3-
end
4-
51
Quand('je consulte le contenu de {string}') do |title|
62
click_on_icon_next_to('open', title)
73
end
@@ -17,11 +13,3 @@
1713
attach_file("image-input", File.expand_path("./docs/architecture.png"), make_visible: true)
1814
end
1915

20-
Quand("je réutilise {string} comme glose de type {string}") do |title, type|
21-
select type, from: 'select-dropdown'
22-
click_on_icon('select-document')
23-
document_list = all('.documentList', visible: true)
24-
document_to_select = document_list.find { |document| document.text.include?(title) }
25-
document_to_select.click
26-
end
27-
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#language: fr
2+
3+
Fonctionnalité: Relier un document existant
4+
5+
Scénario: pour commenter un document
6+
7+
Soit un document existant affiché comme document principal
8+
Et une session active avec mon compte
9+
Quand je réutilise "Glossaire" comme glose
10+
Alors "Glossaire" est la glose ouverte
11+
Et la glose contient :
12+
"""
13+
"Il était une fois"
14+
"Once upon a time" (eng)
15+
"Bolo to raz" (svk)
16+
"""

frontend/tests/event.js

+6
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,9 @@ Quand("je sélectionne le fragment de texte :", (text) => {
6363
cy.click_on_contextual_menu_item(paragraph, 'Comment the selected text...');
6464
});
6565

66+
Quand("je réutilise {string} comme glose", function (title) {
67+
cy.get('.select-document').click();
68+
cy.get('input[placeholder="Search documents"]').type(title);
69+
cy.get('.existingDocument').first().click();
70+
});
71+

frontend/tests/outcome.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ Alors("l'année de publication est {string}", (year) => {
3838
});
3939

4040
Alors("la glose contient {string}", (text) => {
41-
cy.get('.scholium .formatted-text').contains(text).should('exist');
41+
cy.contains('.scholium .formatted-text', text).should('exist');
42+
});
43+
44+
Alors("la glose contient :", (text) => {
45+
cy.contains('.scholium .formatted-text', text.replaceAll('\n', ' ')).should('exist');
4246
});
4347

4448
Alors("la glose est ouverte en mode édition", () => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"_id": "4c81f14e0bfe11f08335ab98f4298b8a",
3+
"dc_title": "Glossaire",
4+
"dc_creator": "Projet Perrault",
5+
"dc_issued": "2025-03-28",
6+
"editors": ["alice"],
7+
"links": [{
8+
"verb": "refersTo",
9+
"object": "09c906c6732b11ed89466ba197585f87"
10+
}, {
11+
"verb": "refersTo",
12+
"object": "420ab198674f11eda3b7a3fdd5ea984f"
13+
}]
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"_id": "66c32c560c0011f086923bf64fdf201f",
3+
"isPartOf": "4c81f14e0bfe11f08335ab98f4298b8a",
4+
"editors": ["alice"],
5+
"text": "\"Il était une fois\"\n: \"Once upon a time\" (eng)\n: \"Bolo to raz\" (svk)",
6+
"links": [{
7+
"verb": "refersTo",
8+
"object": "420ab198674f11eda3b7a3fdd5ea984f"
9+
}, {
10+
"verb": "refersTo",
11+
"object": "09c906c6732b11ed89466ba197585f87"
12+
}]
13+
}

0 commit comments

Comments
 (0)