Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Equipe 1 - Atividade 2 #345

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
88aeaf9
Definicao de cenários baseados na GUI e nos controladores
tiagonog Mar 30, 2015
5d435f7
Alteracao de cenários baseados na GUI e nos controladores
tiagonog Mar 30, 2015
38e9aa0
New scenarios added:
RomeroBarata Mar 30, 2015
6433722
Merge remote-tracking branch 'origin/dev' into dev
RomeroBarata Mar 30, 2015
a3fa14d
Atividade 3
luisdelgado Mar 31, 2015
338f8c8
Atividade 3:
luisdelgado Mar 31, 2015
dd75fc9
Adicionados novos scenarios a feature Reports
Mar 31, 2015
2681a87
Update Conferencia.feature
Mar 31, 2015
6740394
New Scenarios Conferencia.feature
almeidaeduardo Mar 31, 2015
93acd30
Modificações nos cenários da feature reports
PauloLuna Mar 31, 2015
06e9ffe
Pequenas mudanças e adição de novos cenários para Conferência
Apr 3, 2015
dbb0f39
Pequenas modificações nos cenários em comformidade com os comentários…
Apr 4, 2015
fcf961c
Correcao de cenários em XMLImport
tiagonog Apr 15, 2015
e0f5256
Correcao de cenários em XMLImport
tiagonog Apr 18, 2015
39e3937
Implementacao de testes em XMLImport
tiagonog Apr 18, 2015
e41e8c3
Arquivo para execucao de testes
tiagonog Apr 18, 2015
7e123d6
Ajuste de erro
tiagonog Apr 18, 2015
1be3b45
Correção dos cenários
Apr 19, 2015
41bcb5b
Update Conferencia.feature
Apr 19, 2015
37f62e9
Cenários corrigidos e duas GUIs criadas, pelo fato que não existe cen…
fmcs3 Apr 19, 2015
bed6a6c
Update ConferenciaSteps.groovy
Apr 19, 2015
264898b
Removendo Classe Não Usada
fmcs3 Apr 19, 2015
5d913d7
Merge branch 'dev2' of https://github.com/tiagonog/rgms into dev2
fmcs3 Apr 19, 2015
7c883b1
Cenários corrigidos e duas GUIs criadas, pelo fato que não existe cen…
fmcs3 Apr 19, 2015
eb26cb9
Cenários corrigidos e duas GUIs criadas, pelo fato que não existe cen…
fmcs3 Apr 19, 2015
a151b38
Cenários corrigidos e duas GUIs criadas, pelo fato que não existe cen…
fmcs3 Apr 19, 2015
a08c9e4
Cenários corrigidos e duas GUIs criadas, pelo fato que não existe cen…
fmcs3 Apr 19, 2015
e178ca5
Mudanças em ResearchGroupCreatePage e ResearchGroupListPage
fmcs3 Apr 19, 2015
2fde2d6
- A few modifications on BibtexGenerateFile.feature to comply with Th…
RomeroBarata Apr 19, 2015
50d3540
Merge remote-tracking branch 'origin/dev2' into dev2
RomeroBarata Apr 19, 2015
afaf258
Atividade 5:
luisdelgado Apr 19, 2015
631e737
scenario update
almeidaeduardo Apr 19, 2015
f1b8dea
Update ConferenceSteps
almeidaeduardo Apr 19, 2015
492a125
Merge remote-tracking branch 'origin/dev2' into dev2
luisdelgado Apr 19, 2015
47e38d2
Merge remote-tracking branch 'origin/dev2' into dev2
luisdelgado Apr 19, 2015
b3537ac
modification of scenarios and tests about gui
Apr 20, 2015
7e9dfa6
testes atividade2
PauloLuna Apr 21, 2015
8c98be9
Reorganized the BibTexGenerateFileStesp.groovy because the commits fr…
RomeroBarata Apr 25, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions grails-app/controllers/rgms/publication/XMLController.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import rgms.member.Member
*/
class XMLController {


def home() {}

def upload() {
Expand Down Expand Up @@ -95,6 +96,11 @@ class XMLController {
XMLService.createDissertations(xmlFile)
}

def boolean verifyDissertations(String title, Node xmlFile)
{
return XMLService.verifyDissertations(title, xmlFile)
}

def enviarConferenciaXML() {
String flashMessage = message(code: 'default.importedMsg.message')

Expand Down Expand Up @@ -163,4 +169,12 @@ class XMLController {
User user = User.findByUsername(SecurityUtils.getSubject()?.getPrincipal().toString())
return user?.author
}

int similarityTolerance = 0

def setSimilarityTolerance(int value) {
similarityTolerance = value;
}


}
32 changes: 32 additions & 0 deletions grails-app/services/rgms/XMLService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,38 @@ class XMLService {
newDissertation.save(flush: false)
}

static boolean verifyDissertations (String title, Node xmlFile )
{
Node dadosGerais = (Node) xmlFile.children()[0]
Node formacaoAcademica = getNodeFromNode(dadosGerais, "FORMACAO-ACADEMICA-TITULACAO")
Node mestrado = (Node) formacaoAcademica.children()[1]
Node doutorado = (Node) formacaoAcademica.children()[2]

if(analizeDissertationNode(title, mestrado) || analizeDissertationNode(title, doutorado))
{
return true
}
else
{
return false
}

}

static boolean analizeDissertationNode(String title, Node node)
{
Dissertacao newDissertation = new Dissertacao()
newDissertation.title = getAttributeValueFromNode(node, "TITULO-DA-DISSERTACAO-TESE")
if(newDissertation.title == title)
{
return true
}
else
{
return false
}
}

static void createConferencias(Node xmlFile) {
Node trabalhosEmEventos = (Node) ((Node) xmlFile.children()[1]).children()[0]

Expand Down
2 changes: 1 addition & 1 deletion grails-app/views/XML/home.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<br/>
<g:form controller="XML" method="post" action="upload" enctype="multipart/form-data">
<input type="file" name="file"/>
<input type="file" id="fileInput" name="file"/>
<input type="submit"/>
</g:form>
</div>
Expand Down
69 changes: 69 additions & 0 deletions test/cucumber/BibtexGenerateFile.feature
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,72 @@ Feature: all bibtex
When I select the export bibtex file option at the publications menu
And I select Generate All BibTex option at the export bibtex page
Then I can see the bibtex details

Scenario: Duplicate citation-key generation
Given I have an article named "A theory of software product line refinement"
And I have an article named "A new approach to large-scale software development"
When I generate a BibTex file
Then the BibTex file has unique citation-keys for each article

Scenario: Generate new BibTex from a subset of publications web
Given I am on the "Publications" menu
When I select a subset of publications
And I click on the "Generate BibTex" option
Then the system generates a BibTex file containing only the publications from the selected subset

Scenario: Publications with multiple authors must have authors' names separated by and
Given I have an article with multiple authors
When I generate a BibTex file
Then the BibTex file author field must have the authors' names separated by "and"

#if ($InvalidEntryOfBibtex)
Scenario: Tags of entry of BibTex are not separated by commas
Given: I am logged into the system
And: I am at the "Main menu"
And: A BibTeX entry is "@article{mrx05
auTHor = "Mr. X",
Title = {Something Great},
publisher = "nob" # "ody",
YEAR = 2005,
}"
When: I click to "Generate BibTex"
Then: I see an error message

Scenario: Tags of entry of BibTex are incompatible with type of publication chosen
Given: I am logged int the system
And: I am at the "Main menu"
And: A BibTex entry is "@article{mrx05,
auTHor = "Mr. X",
Title = {Something Great},
publisher = "nob" # "ody",
YEAR = 2005,
chapter = 8,
}"
When: I click to "Generate BibTex"
Then: I see an error message

Scenario: Lack mandatory tags in entry of BibTex with type of publication chosen
Given: I am logged into the system
And: I am at the "Main menu"
And: A BibTeX entry is "@article{mrx05,
auTHor = "Mr. X",
Title = {Something Great},
publisher = "nob" # "ody",
}"
When: I click to "Generate BibTex"
Then: I see an error message
#end

#if ($CorrectEntryOfBibtex)
Scenario: BibTex file is generated
Given: I am logged into the system
And: I am at the "Main menu"
And: A Bibtex entry is "@article{mrx05,
auTHor = "Mr. X",
Title = {Something Great},
publisher = "nob" # "ody",
YEAR = 2005,
}"
When: I click to "Generate BibTex"
Then: a BibTex file is generated
#end
107 changes: 104 additions & 3 deletions test/cucumber/Conferencia.feature
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@i9n
Feature: conferencia
As a member of a research group
I want to add, remove and modify conferencias I have published
so that I can generate web pages and reports containing these conferencias
So that I can add, remove and modify conferencias I had published
I want to generate web pages and reports containing these conferencias

Scenario: new conferencia
Given the system has no conferencia entitled "IV Conference on Software Product Lines"
Expand Down Expand Up @@ -144,4 +144,105 @@ Feature: conferencia
And I select the option Serach for Conference at the conference page
Then a list of all conferences containing that date will be presented in the conference screen

# voces podem criar cenários para ordenar a lista de conferencia, filtrar a lista, verificar se alguns campos podem ser opcionais, etc.
Scenario: Publish a new article
Given I am at the article registration page
When I am filling in the author field
And As I type the name, they come up suggestions of names containing the string entered as "And" may appear names like " Anderson " or " Candido "
Then I choose the right name if it appears , otherwise we fill the whole field

Scenario: new article
Given I am at the publications
When I select the "conferencia" option at the publications menu
And I select the new article
Then I can fill the article details

Scenario: remove article
Given I am at the publications menu
When I select the "conferencia" option at the publications menu
And a list of articles stored by the system is displayed at the conferencia page
Then I select the desired article
Then I can remove the article

Scenario: new article from an existing conference
Given the conference "I International Conference on software Engineering" is stored in the system
When I type the letter "I" in the conference field to publish a new article
Then the system suggests "I International Conference on software Engineering"

Scenario: author suggestion for a new article (existing author)
Given I am adding a new article
When I type the first letter in the Author field
Then a list is displayed suggesting names from Authors who already published an article
And I select the name I want

Scenario: Search conference web by existing Author
Given I am at the Search Conference page
When I write a name from an Author who already published an article at the Search field
And I click on the Search button
Then a list of all conferences with articles from that Author are displayed

Scenario: System can suggest one author for new conferencia being created (good path)
Given I am at Add new conferencia page
And I had previously published only with "Júnior"
When I try to fill "J" in Authors
Then the system should suggest "Júnior" as an possible author
When I select "Júnior"
Then "Júnior" should be added in "Authors"

Background: Start from the Add new conferencia page with conferencias yet published
Given I am at Add new conferencia page
And I had previously published with "Jorge", "Junior Lima" and "Fábio Jr"

Scenario: System can suggest some authors for new conferencia being created (good path)
When I try to fill "J" in Authors
Then the system should suggest "Jorge", "Junior Lima" and "Fábio Jr" as possible authors in lexicographical order
When I select "Jorge" and other suggested authors
Then the selected authors should be added in "Authors"

Scenario: System can try to suggest some authors for new conferencia being created (bad path)
When I try to fill "K" in Authors
Then the system should suggest the latest 5 authors I had published as possible authors
When I select any suggested author
Then the selected author should be added in "Authors"

Scenario: Fill in the field "Author Name"
Given I'm registering a new Article
And I'm filling the field " Author Name"
When I type "and" if there author names as " Anderson " or " Candido " registered in the system
And the names " Anderson " and " Candido " will be suggested by the system
Then I choose between " Anderso " and " Candido " or if it is not neither I fill with the desired name

Scenario: Remove Article Web
Given I want to remove the article "A theory of software" with the file name "ATOS.pdf"
When I click on "A theory of software" that is on the list of articles published in the conference page
And I click with the mouse in the article "A theory of software"
And appear the options to edit or remove the article
Then I click the button to remove and the "A theory of software" is removed from the list of articles
And the aquirvo "ATOS.pdf" is removed from the system

# voces podem criar cenários para ordenar a lista de conferencia, filtrar a lista, verificar se alguns campos podem ser opcionais, etc.

@ignore
Scenario: new article from an existing conference
Given the conference "I International Conference on software Engineering" is stored in the system
When I type the letter "I" in the conference field to publish a new article
Then the system suggests "I International Conference on software Engineering"
@ignore
Scenario: author suggestion for a new article (existing author)
Given I am adding a new article
When I type the first letter in the Author field
Then a list is displayed suggesting names from Authors who already published an article
And I select the name I want

Scenario: Search conference articles by Author web
Given I am at the Conference Articles page
And the system has some conference articles authored by "Junior", among several publications
When I write "J" at the Search field
And I click on the Search button
Then a list of all conference articles by "Junior" is displayed

Scenario: Search for conferences which an Author have published web
Given I am at the Conference page
And an Author named "Junior" had published 3 article for 3 different conferences
When I write "Junior" at the search field
And I click on the search button
Then a list of all conferences that "Junior" published an article is displayed
Loading