diff --git a/.gitignore b/.gitignore index a1defcef..274186ef 100644 --- a/.gitignore +++ b/.gitignore @@ -441,3 +441,5 @@ target/test-reports/plain/TEST-functional-cucumber-orientations-err.txt target/test-reports/plain/TEST-functional-cucumber-orientations-out.txt target/test-reports/plain/TEST-functional-cucumber-orientations.txt + + target/test-reports/* \ No newline at end of file diff --git a/chromedrivers/chromedriver b/chromedrivers/chromedriver new file mode 100755 index 00000000..70151ce7 Binary files /dev/null and b/chromedrivers/chromedriver differ diff --git a/grails-app/controllers/rgms/news/NewsController.groovy b/grails-app/controllers/rgms/news/NewsController.groovy index 9b20923b..6c439bc4 100644 --- a/grails-app/controllers/rgms/news/NewsController.groovy +++ b/grails-app/controllers/rgms/news/NewsController.groovy @@ -36,7 +36,7 @@ class NewsController { flash.message = message(code: 'default.deleted.message', args: [message(code: 'news.label', default: 'News'), params.id]) redirect(action: "list") } - catch (DataIntegrityViolationException e) { + catch (DataIntegrityViolationException ignored) { flash.message = message(code: 'default.not.deleted.message', args: [message(code: 'news.label', default: 'News'), params.id]) redirect(action: "show", id: params.id) } @@ -44,7 +44,7 @@ class NewsController { def save = { if (!grailsApplication.config.grails.mail.username) { - throw new RuntimeException(message(code: 'mail.plugin.not.configured', 'default': 'Mail plugin not configured')) + throw new RuntimeException(message(code: 'mail.plugin.not.configured', 'default': 'Mail plugin not configured') as Throwable) } def newsInstance = new News(params) @@ -81,7 +81,6 @@ class NewsController { if (!newsInstance.save(flush: true)) { render(view: "create", model: [newsInstance: newsInstance]) - return } } diff --git a/grails-app/views/pdf/_demo2.gsp b/grails-app/views/pdf/_demo2.gsp deleted file mode 100644 index 9dc7398f..00000000 --- a/grails-app/views/pdf/_demo2.gsp +++ /dev/null @@ -1,79 +0,0 @@ - - - - Simple PDF demo2 - - - -

Sample PDF Output

-

This is simple HTML

-

this has inline CSS

- -

Here is some data passed from the contorller...

-

Information gathered from the controller: ${randomString}

- -

Here is some information sent in the URL and handled by a controller (get variables):

- - - - - - - - - - - - - - - - - - -
IDNameAge
${id}${name}${age}
styled with css...
- laptop - -
-

checkbox: - %{-- checkboxes used to cause an error in pdf generation, but now they simply don't show up... --}% - -

- %{-- text field sample --}% -

Text Input: - -

-
- -

Here is some information gathered from a form and handled grails render method (post variables):

-

Favorite food: ${pdf?.food}

-

Favorite food: ${pdf?.food.toString()}

-

Hometown: ${pdf?.hometown}

- -

${pdf}

- -

Images with relative URL's are automatically resolved by the the modified version of XHTMLrenderer included with the plugin

- laptop - -

Images with absolute URI's also do just fine:

- laptop2 - -

Hint: One way to style gsp's that you intend to make into pdf's is to have two seperate style sheets one for media="print" and one for media="screen". The print style sheet will be used to style the PDF, and if PDF generation fails you will get a styled HTML view that isn't all weird because of fonts sized in pt and such.

- - diff --git a/grails-app/views/pdf/demo.gsp b/grails-app/views/pdf/demo.gsp deleted file mode 100644 index 2abd5023..00000000 --- a/grails-app/views/pdf/demo.gsp +++ /dev/null @@ -1,342 +0,0 @@ - - - - - Simple PDF demo - - - -

Grails PDF Plugin demo page

- -

Tag Documentation / Live Examples / Functional Testing

-

pdfLink tag:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %{-- - - - - - - - --}% - - - - - - - - - - - - - - - - - -
DescriptionSample Source/HTML outputIn Action
URL method examples:
Simple Usage: - <g:pdfLink url="/pdf/demo2">PDF View</g:pdfLink> - - PDF View -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?url=%2Fpdf%2Fdemo2">
- PDF View
- </a> -
-
Simple Usage w/ Get data: - <g:pdfLink url="/pdf/demo2/5?name=bob&age=22">PDF View</g:pdfLink> - - PDF View -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?url=%2Fpdf%2Fdemo2%2F5%3Fname%3Dbob%26age%3D22">
- PDF View
- </a> -
-
Custom filename - <g:pdfLink url="/pdf/demo2.gsp" filename="sample.pdf">sample.pdf</g:pdfLink> - - sample.pdf -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?url=%2Fpdf%2Fdemo2.gsp&filename=sample.pdf">
- sample.pdf
- </a> -
-
Bundled icon - <g:pdfLink url="/pdf/demo2.gsp" filename="sample.pdf" icon="true"/> - - -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?url=%2Fpdf%2Fdemo2.gsp&filename=sample.pdf">
- <img border="0" alt="PDF Version" src="/pdf/images/pdf_button.png" />
- </a> -
-
Bundled icon w/ link content - <g:pdfLink url="/pdf/demo2.gsp" filename="sample.pdf" icon="true" class="myPdfLink">Custom link</g:pdfLink> - - Custom link -
- - <a class="myPdfLink" title="pdf" href="/pdf/pdf/pdfLink?url=%2Fpdf%2Fdemo2.gsp&filename=sample.pdf">
- <img border="0" alt="PDF Version" src="/pdf/images/pdf_button.png" />
- Custom link
- </a> -
-
String method examples:
Simple Template Usage: - <g:pdfLink template="demo2">template as PDF</g:pdfLink> - - template as PDF -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?template=demo2&filename=document.pdf">
- PDF View
- </a> -
-
Simple Controller Action Usage (action and id are optional): - <g:pdfLink pdfController="pdf" pdfAction="demo2">GSP as PDF</g:pdfLink> - - GSP as PDF -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?&pdfController=pdf&pdfAction=demo2">
- PDF View
- </a> -
-
Simple Controller Action + Id Usage: - <g:pdfLink pdfController="pdf" pdfAction="demo2" pdfId="65432">GSP as PDF</g:pdfLink> - - GSP as PDF -
- - <a class="pdf" title="pdf" href="/pdf/pdf/pdfLink?&pdfController=pdf&pdfAction=demo2&pdfId=65432">
- PDF View
- </a> -
-
- -

pdfForm tag:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DescriptionSample Source/HTML outputIn Action
GET method examples:
Simple Usage: - <g:pdfForm url="/pdf/demo2">...</g:pdfForm> - - - name:
- - -
-
- - <form id="simplePdfForm" method="get" action="/pdf/pdf/pdfForm" name="simplePdfForm">
- <input type="hidden" value="/pdf/demo2" name="url"/>
- <input type="hidden" value="document.pdf" name="filename"/>
- ...
- </form>
-
w/ Id and Filename: - <g:pdfForm url="/pdf/demo2/1968" filename="sample.pdf">...</g:pdfForm> - - - age:
- - -
-
- - <form id="simplePdfForm" method="get" action="/pdf/pdf/pdfForm" name="simplePdfForm">
- <input type="hidden" value="/pdf/demo2/1968" name="url"/>
- <input type="hidden" value="sample.pdf" name="filename"/>
- ...
- </form> -
-
POST method examples:
Controller and Action: - <g:pdfForm controller="pdf" action="demo3" method="post">...</g:pdfForm> - - - food:
- - -
-
- - <form id="simplePdfForm" method="post" action="/pdf/pdf/pdfForm" name="simplePdfForm">
- <input type="hidden" value="pdf" name="pdfController"/>
- <input type="hidden" value="demo3" name="pdfAction"/>
- <input type="hidden" value="document.pdf" name="filename"/>
- ...
- </form> -
-
Controller, Action, Id and Filename: - <g:pdfForm controller="pdf" action="demo3" method="post">...</g:pdfForm> - - - food:
- - -
-
- - <form id="simplePdfForm" method="post" action="/pdf/pdf/pdfForm" name="simplePdfForm">
- <input type="hidden" value="pdf" name="pdfController"/>
- <input type="hidden" value="demo3" name="pdfAction"/>
- <input type="hidden" value="document.pdf" name="filename"/>
- ...
- </form> -
-
Template: - <g:pdfForm template="demo2" >...</g:pdfForm> - - - hometown:
- - -
-
- - <form id="simplePdfForm" method="post" action="/pdf/pdf/pdfForm2" name="simplePdfForm">
- <input type="hidden" value="demo2" name="template"/>
- ...
- </form> -
-
Template and Filename: - <g:pdfForm template="demo2" filename="sample.pdf">...</g:pdfForm> - - - hometown:
- - -
-
- - <form id="simplePdfForm" method="post" action="/pdf/pdf/pdfForm2" name="simplePdfForm">
- <input type="hidden" value="demo2" name="template"/>
- <input type="hidden" value="sample.pdf" name="filename"/>
- ...
- </form> -
-
- - diff --git a/grails-app/views/pdf/demo2.gsp b/grails-app/views/pdf/demo2.gsp deleted file mode 100644 index 369e88b3..00000000 --- a/grails-app/views/pdf/demo2.gsp +++ /dev/null @@ -1,73 +0,0 @@ - - - - Simple PDF demo2 - - - -

Sample PDF Output

-

This is simple HTML

-

this has inline CSS

- -

Here is some data passed from the contorller...

-

Information gathered from the controller: ${randomString}

- -

Here is some information sent in the URL and handled by a controller (get variables):

- - - - - - - - - - - - - - - - - - -
IDNameAge
${id}${name}${age}
styled with css...
- laptop - -
-

checkbox: - %{-- checkboxes used to cause an error in pdf generation, but now they simply don't show up... --}% - -

- %{-- text field sample --}% -

Text Input: - -

-
- - -

Images with relative URL's are automatically resolved by the the modified version of XHTMLrenderer included with the plugin

- laptop - -

Images with absolute URI's also do just fine:

- laptop2 - -

Hint: One way to style gsp's that you intend to make into pdf's is to have two seperate style sheets one for media="print" and one for media="screen". The print style sheet will be used to style the PDF, and if PDF generation fails you will get a styled HTML view that isn't all weird because of fonts sized in pt and such.

- - diff --git a/grails-app/views/pdf/demo3.gsp b/grails-app/views/pdf/demo3.gsp deleted file mode 100644 index 7d7140c9..00000000 --- a/grails-app/views/pdf/demo3.gsp +++ /dev/null @@ -1,73 +0,0 @@ - - - - - Simple PDF demo2 - - - -

Sample PDF Output

-

This is simple HTML

-

this has inline CSS

- -

Here is some data passed from the contorller...

-

Information gathered from the controller: ${randomString}

- -

Here is some information sent in the URL and handled by a controller (get variables):

- - - - - - - - - - - - - - - - - - -
IDNameAge
${id}${name}${age}
styled with css...
- -

Here is some information gathered from a form and handled by a controller (post variables):

-

Favorite food: ${pdf?.food}

-

Favorite food: ${pdf?.food.toString()}

-

Hometown: ${pdf?.hometown}

- -

${pdf}

- -

Images with relative URL's are automatically resolved by the the modified version of XHTMLrenderer included with the plugin

- laptop - -

Images with absolute URI's also do just fine:

- laptop2 - -

Hint: One way to style gsp's that you intend to make into pdf's is to have two seperate style sheets one for media="print" and one for media="screen". The print style sheet will be used to style the PDF, and if PDF generation fails you will get a styled HTML view that isn't all weird because of fonts sized in pt and such.

- -

Varialbles passed into gsp that the plugin will render as PDF need to start with pdf. so for example the form field name was hometown and to reference that varialbe here we needed {pdf.hometown}

- - ${content} - - - diff --git a/grails-app/views/pdf/sampleInclude.gsp b/grails-app/views/pdf/sampleInclude.gsp deleted file mode 100644 index 2938d1c8..00000000 --- a/grails-app/views/pdf/sampleInclude.gsp +++ /dev/null @@ -1,10 +0,0 @@ - - - - -

hello world!

-

${bar}

-

${today}

-

${tomorrow}

- - diff --git a/out/production/rgms-grailsPlugins/jasper.properties b/out/production/rgms-grailsPlugins/jasper.properties deleted file mode 100644 index 5d9ba4fe..00000000 --- a/out/production/rgms-grailsPlugins/jasper.properties +++ /dev/null @@ -1,4 +0,0 @@ -jasper.controller.invalidFormat = Invalid format: {0} - -jasper.taglib.missingAttribute = Missing required attribute: {0}. All of the following attributes are required: {1}. -jasper.taglib.invalidFormatAttribute = Value {0} is an invalid format attribute. Only {1} are permitted. diff --git a/out/production/rgms-grailsPlugins/messages.properties b/out/production/rgms-grailsPlugins/messages.properties deleted file mode 100644 index e69de29b..00000000 diff --git a/out/production/rgms-grailsPlugins/messages_fr.properties b/out/production/rgms-grailsPlugins/messages_fr.properties deleted file mode 100644 index 47bb6c80..00000000 --- a/out/production/rgms-grailsPlugins/messages_fr.properties +++ /dev/null @@ -1 +0,0 @@ -translate=Traduis ceci: {0} \ No newline at end of file diff --git a/out/production/rgms-grailsPlugins/shiro.properties b/out/production/rgms-grailsPlugins/shiro.properties deleted file mode 100644 index ddba8d9b..00000000 --- a/out/production/rgms-grailsPlugins/shiro.properties +++ /dev/null @@ -1 +0,0 @@ -login.failed = Invalid username and/or password diff --git a/out/production/rgms/messages.properties b/out/production/rgms/messages.properties deleted file mode 100644 index b8859e3b..00000000 --- a/out/production/rgms/messages.properties +++ /dev/null @@ -1,211 +0,0 @@ -default.doesnt.match.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}] -default.invalid.url.message=Property [{0}] of class [{1}] with value [{2}] is not a valid URL -default.invalid.creditCard.message=Property [{0}] of class [{1}] with value [{2}] is not a valid credit card number -default.invalid.email.message=Property [{0}] of class [{1}] with value [{2}] is not a valid e-mail address -default.invalid.range.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid range from [{3}] to [{4}] -default.invalid.size.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid size range from [{3}] to [{4}] -default.invalid.max.message=Property [{0}] of class [{1}] with value [{2}] exceeds maximum value [{3}] -default.invalid.min.message=Property [{0}] of class [{1}] with value [{2}] is less than minimum value [{3}] -default.invalid.max.size.message=Property [{0}] of class [{1}] with value [{2}] exceeds the maximum size of [{3}] -default.invalid.min.size.message=Property [{0}] of class [{1}] with value [{2}] is less than the minimum size of [{3}] -default.invalid.validator.message=Property [{0}] of class [{1}] with value [{2}] does not pass custom validation -default.not.inlist.message=Property [{0}] of class [{1}] with value [{2}] is not contained within the list [{3}] -default.blank.message=Property [{0}] of class [{1}] cannot be blank -default.not.equal.message=Property [{0}] of class [{1}] with value [{2}] cannot equal [{3}] -default.null.message=Property [{0}] of class [{1}] cannot be null -default.not.unique.message=Property [{0}] of class [{1}] with value [{2}] must be unique - -default.paginate.prev=Previous -default.paginate.next=Next -default.boolean.true=True -default.boolean.false=False -default.date.format=yyyy-MM-dd HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} created -default.updated.message={0} {1} updated -default.deleted.message={0} {1} deleted -default.not.deleted.message={0} {1} could not be deleted -default.not.found.message={0} not found with id {1} -default.optimistic.locking.failure=Another user has updated this {0} while you were editing - -default.home.label=Home -default.list.label={0} List -default.add.label=Add {0} -default.new.label=New {0} -default.create.label=Create {0} -default.show.label=Show {0} -default.edit.label=Edit {0} - -default.button.create.label=Create -default.button.edit.label=Edit -default.button.update.label=Update -default.button.delete.label=Delete -default.button.list.label = List -default.button.delete.confirm.message=Are you sure? - - -typeMismatch.java.net.URL=Property {0} must be a valid URL -typeMismatch.java.net.URI=Property {0} must be a valid URI -typeMismatch.java.util.Date=Property {0} must be a valid Date -typeMismatch.java.lang.Double=Property {0} must be a valid number -typeMismatch.java.lang.Integer=Property {0} must be a valid number -typeMismatch.java.lang.Long=Property {0} must be a valid number -typeMismatch.java.lang.Short=Property {0} must be a valid number -typeMismatch.java.math.BigDecimal=Property {0} must be a valid number -typeMismatch.java.math.BigInteger=Property {0} must be a valid number - - -#if($inter) -default.member.label=Members -default.publication.label=Publications -default.MSGIni.label=Choose a option on the menu -default.periodico.label=Journal -default.conferencia.label=Conference -default.ferramenta.label=Tool -default.dissertacao.label=Dissertation -default.tese.label=Thesis -default.bookchapter.label=Book Chapter -default.technicalReport.label=Technical Report -default.msgBusca.label=List, search, edit and remove publications -default.title.label=Title -default.author.label=Author -default.year.label=Year -default.search.label=Search - -user.login.title=Login -user.register.title=RGMS -mainMenu.title=RGMS - - -conferencia.title.label=Title -conferencia.author.label=Author -conferencia.conference.label=Conference -conferencia.year.label=Year -conferencia.pageinitial.label=Initial Page -conferencia.pageInitial.label=Initial Page -conferencia.pageFinal.label=Final Page -conferencia.month.label=Month -conferencia.arquivo.label=File -conferencia.label=Conference -conferencia.addAutor.label='Add Author' -conferencia.members.label=Author Members - - -#if($maisresul) -dissertacao.members.label=Author Members -dissertacao.title.label=Title -dissertacao.school.label=School -dissertacao.year.label=Year -dissertacao.month.label=Month -dissertacao.arquivo.label=File -dissertacao.author.label=Author -dissertacao.label=Dissertation -dissertacao.duplicatetitle.failure = Dissertation not stored because there is another one with the same title -dissertacao.filesaving.failure = Dissertation not stored due to file saving issue -dissertacao.saving.failure = Dissertation not stored due to saving issue -#end - - -ferramenta.members.label=Author Members -ferramenta.author.label=Author -ferramenta.addAauthor.label='Add Author' -ferramenta.descricao.label=Description -ferramenta.link.label=Link -ferramenta.publicacaoAssociada.label=Associated Publication -ferramenta.title.label=Title -ferramenta.year.label=Year -ferramenta.edit.conflict=Another user has updated this Ferramenta while you were editing - -researchGroup.label = Research Group -researchGroup.hasCycle=There is a cycle associated with this research group - -periodico.title.label=Title -periodico.members.label=Author Members -periodico.addAauthor.label='Add Author' -periodico.author.label=Author -periodico.journal.label=Journal -periodico.number.label=Number -periodico.pageInitial.label=Initial Page -periodico.pageFinal.label=Final Page -periodico.volume.label=Volume -periodico.year.label=Year -periodico.arquivo.label=File -periodico.label=Journal -periodico.duplicatetitle.failure = Article not stored because there is another one with the same title -periodico.filesaving.failure = Article not stored due to file saving issue -periodico.saving.failure = Article not stored due to saving issue - - -technicalReport.title.label = Title -technicalReport.publicationDate.label = Publication Date -technicalReport.file.label = File -technicalReport.researchLine.label = Research Line -technicalReport.institution.label = Institution -technicalReport.members.label = Members -technicalReport.filesaving.failure = Report not stored due to file saving issue -technicalReport.saving.failure = Report not stored due to saving issue -technicalReport.label=Technical Report - -#if($maisresul) -tese.author.label=Author -tese.title.label=Title -tese.school.label=School -tese.year.label=Year -tese.month.label=Month -tese.arquivo.label=File -tese.label=Thesis -tese.duplicatetitle.failure = Thesis not stored because there is another one with the same title -#end -#end - -orientation.same.members=Um membro nao pode orientar a si mesmo -default.xml.parserror.message=No file uploaded or it wasn't a valid XML -default.xml.structure.message=The XML struct doesn't comply with Lattes -default.xml.unknownerror.message=An unknown error occurred. Contact the administrator -xml.label=XMLImport - -file.already.exist.message=A file has already been saved with the same name - -default.report.label={0}s Report -default.citations.label=Citations - -#if($news) -news.not.created.unicity.rule.message=The system has a news with this description and date. -default.button.update.twitter.label=Update News from Twitter -news.label=News -#end - -#if($visit) -default.visit.label=Visit -visit.label=Visit -#end - -mail.plugin.not.configured=Mail plugin not configured - -#mail -mail.title.reset=[GRMS] Reset your password -mail.body.reset=Hello {0},\n\nYou have requested resetting your password. Please ignore this message if it's not you who have made the request.\n\nIn order to reset your password, please follow this link :\n\n {1}\n\nBest Regards -mail.title.authenticate=[GRMS] You received a request to authenticate an account. -mail.body.authenticate=Hello Administrator,\n\nYou received a request to authenticate an account.\n\nWho requested was {0}. His/Her email address is {1}\n\n${2}\n\nBest Regards,\nResearch Group Management System -mail.title.create.account=[GRMS] Your account was successfully created! -mail.body.create.account=Hello {0},\n\nYour account was successfully created!\n\nHere is your username: {1} and password: {2}\n\n{3}\n\nBest Regards,\nAdministrator of the Research Group Management System -mail.title.membership.join=[RGMS] New member in {0}! -mail.body.membership.join={0} joined {1} today. Please welcome him at: {2} -mail.title.researchgroup.child=Research Group change hierarchy -mail.body.researchgroup.child=Hello {0},\n\nThe Research Group is now child of the Research Group {1} - -#if($member) -member.label=Member -member.start.label=Start -member.end.label=End -member.status_H.label=Status H -#end - -#if($record) -default.record.label=Record -record.label=Record -record.start.label=Start -record.end.label=End -record.status_H.label=Status H -#end diff --git a/out/production/rgms/messagesResearchLine.properties b/out/production/rgms/messagesResearchLine.properties deleted file mode 100644 index 64e5238d..00000000 --- a/out/production/rgms/messagesResearchLine.properties +++ /dev/null @@ -1,10 +0,0 @@ - default.joinedmessage.message = The following members joined the research line - default.leftmessage.message = The following member left the research line - default.notmember.message = You are not a member of the Research Line - default.anymore.message = anymore - default.newmember.message = You are now a member of the Research Line - default.change.message = Report of change of members in Research Line - default.bestregard.message = Best Regards, Admin - default.warningwhileedting.message = Another user has updated this ResearchLine while you were editing - default.hello.message = Hello {0} \n\nYou are not participating of the research line - default.hello2.message = Hello {0},\n\nYou are now participating of the research line diff --git a/out/production/rgms/messagesTwitter.properties b/out/production/rgms/messagesTwitter.properties deleted file mode 100644 index 124e5512..00000000 --- a/out/production/rgms/messagesTwitter.properties +++ /dev/null @@ -1,5 +0,0 @@ - default.controller.message = "TwitterController=" - default.controller2.message = "TwitterController=" - default.sucess.message = "Successful call to fooAction" - default.consumerkey.message = "ZHgJv54dR7ZkYuKLvBeFJA" - defautl.consumersecret.message = "9Qj0OVOSEbkVOdCl4X1XUnoHSA46lQuAF3zCd7Gdk" \ No newline at end of file diff --git a/out/production/rgms/messages_cs_CZ.properties b/out/production/rgms/messages_cs_CZ.properties deleted file mode 100644 index ab45c43d..00000000 --- a/out/production/rgms/messages_cs_CZ.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] neodpovídá požadovanému vzoru [{3}] -default.invalid.url.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] není validní URL -default.invalid.creditCard.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] není validní číslo kreditní karty -default.invalid.email.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] není validní emailová adresa -default.invalid.range.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] není v povoleném rozmezí od [{3}] do [{4}] -default.invalid.size.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] není v povoleném rozmezí od [{3}] do [{4}] -default.invalid.max.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] překračuje maximální povolenou hodnotu [{3}] -default.invalid.min.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] je menší než minimální povolená hodnota [{3}] -default.invalid.max.size.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] překračuje maximální velikost [{3}] -default.invalid.min.size.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] je menší než minimální velikost [{3}] -default.invalid.validator.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] neprošla validací -default.not.inlist.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] není obsažena v seznamu [{3}] -default.blank.message=Položka [{0}] třídy [{1}] nemůže být prázdná -default.not.equal.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] nemůže být stejná jako [{3}] -default.null.message=Položka [{0}] třídy [{1}] nemůže být prázdná -default.not.unique.message=Položka [{0}] třídy [{1}] o hodnotě [{2}] musí být unikátní - -default.paginate.prev=Předcházející -default.paginate.next=Následující -default.boolean.true=Pravda -default.boolean.false=Nepravda -default.date.format=dd. MM. yyyy HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} vytvořeno -default.updated.message={0} {1} aktualizováno -default.deleted.message={0} {1} smazáno -default.not.deleted.message={0} {1} nelze smazat -default.not.found.message={0} nenalezen s id {1} -default.optimistic.locking.failure=Jiný uživatel aktualizoval záznam {0}, právě když byl vámi editován - -default.home.label=Domů -default.list.label={0} Seznam -default.add.label=Přidat {0} -default.new.label=Nový {0} -default.create.label=Vytvořit {0} -default.show.label=Ukázat {0} -default.edit.label=Editovat {0} - -default.button.create.label=Vytvoř -default.button.edit.label=Edituj -default.button.update.label=Aktualizuj -default.button.delete.label=Smaž -default.button.delete.confirm.message=Jste si jistý? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL=Položka {0} musí být validní URL -typeMismatch.java.net.URI=Položka {0} musí být validní URI -typeMismatch.java.util.Date=Položka {0} musí být validní datum -typeMismatch.java.lang.Double=Položka {0} musí být validní desetinné číslo -typeMismatch.java.lang.Integer=Položka {0} musí být validní číslo -typeMismatch.java.lang.Long=Položka {0} musí být validní číslo -typeMismatch.java.lang.Short=Položka {0} musí být validní číslo -typeMismatch.java.math.BigDecimal=Položka {0} musí být validní číslo -typeMismatch.java.math.BigInteger=Položka {0} musí být validní číslo \ No newline at end of file diff --git a/out/production/rgms/messages_da.properties b/out/production/rgms/messages_da.properties deleted file mode 100644 index 858b2290..00000000 --- a/out/production/rgms/messages_da.properties +++ /dev/null @@ -1,56 +0,0 @@ -default.doesnt.match.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] overholder ikke mønsteret [{3}] -default.invalid.url.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] er ikke en gyldig URL -default.invalid.creditCard.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] er ikke et gyldigt kreditkortnummer -default.invalid.email.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] er ikke en gyldig e-mail adresse -default.invalid.range.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] ligger ikke inden for intervallet fra [{3}] til [{4}] -default.invalid.size.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] ligger ikke inden for størrelsen fra [{3}] til [{4}] -default.invalid.max.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] overstiger den maksimale værdi [{3}] -default.invalid.min.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] er under den minimale værdi [{3}] -default.invalid.max.size.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] overstiger den maksimale størrelse på [{3}] -default.invalid.min.size.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] er under den minimale størrelse på [{3}] -default.invalid.validator.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] overholder ikke den brugerdefinerede validering -default.not.inlist.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] findes ikke i listen [{3}] -default.blank.message=Feltet [{0}] i klassen [{1}] kan ikke være tom -default.not.equal.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] må ikke være [{3}] -default.null.message=Feltet [{0}] i klassen [{1}] kan ikke være null -default.not.unique.message=Feltet [{0}] i klassen [{1}] som har værdien [{2}] skal være unik - -default.paginate.prev=Forrige -default.paginate.next=Næste -default.boolean.true=Sand -default.boolean.false=Falsk -default.date.format=yyyy-MM-dd HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} oprettet -default.updated.message={0} {1} opdateret -default.deleted.message={0} {1} slettet -default.not.deleted.message={0} {1} kunne ikke slettes -default.not.found.message={0} med id {1} er ikke fundet -default.optimistic.locking.failure=En anden bruger har opdateret denne {0} imens du har lavet rettelser - -default.home.label=Hjem -default.list.label={0} Liste -default.add.label=Tilføj {0} -default.new.label=Ny {0} -default.create.label=Opret {0} -default.show.label=Vis {0} -default.edit.label=Ret {0} - -default.button.create.label=Opret -default.button.edit.label=Ret -default.button.update.label=Opdater -default.button.delete.label=Slet -default.button.delete.confirm.message=Er du sikker? - -# Databindingsfejl. Brug "typeMismatch.$className.$propertyName for at passe til en given klasse (f.eks typeMismatch.Book.author) -typeMismatch.java.net.URL=Feltet {0} skal være en valid URL -typeMismatch.java.net.URI=Feltet {0} skal være en valid URI -typeMismatch.java.util.Date=Feltet {0} skal være en valid Dato -typeMismatch.java.lang.Double=Feltet {0} skal være et valid tal -typeMismatch.java.lang.Integer=Feltet {0} skal være et valid tal -typeMismatch.java.lang.Long=Feltet {0} skal være et valid tal -typeMismatch.java.lang.Short=Feltet {0} skal være et valid tal -typeMismatch.java.math.BigDecimal=Feltet {0} skal være et valid tal -typeMismatch.java.math.BigInteger=Feltet {0} skal være et valid tal - diff --git a/out/production/rgms/messages_de.properties b/out/production/rgms/messages_de.properties deleted file mode 100644 index 173d4894..00000000 --- a/out/production/rgms/messages_de.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] entspricht nicht dem vorgegebenen Muster [{3}] -default.invalid.url.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist keine gültige URL -default.invalid.creditCard.message=Das Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist keine gültige Kreditkartennummer -default.invalid.email.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist keine gültige E-Mail Adresse -default.invalid.range.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist nicht im Wertebereich von [{3}] bis [{4}] -default.invalid.size.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist nicht im Wertebereich von [{3}] bis [{4}] -default.invalid.max.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist größer als der Höchstwert von [{3}] -default.invalid.min.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist kleiner als der Mindestwert von [{3}] -default.invalid.max.size.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] übersteigt den Höchstwert von [{3}] -default.invalid.min.size.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] unterschreitet den Mindestwert von [{3}] -default.invalid.validator.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist ungültig -default.not.inlist.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] ist nicht in der Liste [{3}] enthalten. -default.blank.message=Die Eigenschaft [{0}] des Typs [{1}] darf nicht leer sein -default.not.equal.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] darf nicht gleich [{3}] sein -default.null.message=Die Eigenschaft [{0}] des Typs [{1}] darf nicht null sein -default.not.unique.message=Die Eigenschaft [{0}] des Typs [{1}] mit dem Wert [{2}] darf nur einmal vorkommen - -default.paginate.prev=Vorherige -default.paginate.next=Nächste -default.boolean.true=Wahr -default.boolean.false=Falsch -default.date.format=dd.MM.yyyy HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} wurde angelegt -default.updated.message={0} {1} wurde geändert -default.deleted.message={0} {1} wurde gelöscht -default.not.deleted.message={0} {1} konnte nicht gelöscht werden -default.not.found.message={0} mit der id {1} wurde nicht gefunden -default.optimistic.locking.failure=Ein anderer Benutzer hat das {0} Object geändert während Sie es bearbeitet haben - -default.home.label=Home -default.list.label={0} Liste -default.add.label={0} hinzufügen -default.new.label={0} anlegen -default.create.label={0} anlegen -default.show.label={0} anzeigen -default.edit.label={0} bearbeiten - -default.button.create.label=Anlegen -default.button.edit.label=Bearbeiten -default.button.update.label=Aktualisieren -default.button.delete.label=Löschen -default.button.delete.confirm.message=Sind Sie sicher? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL=Die Eigenschaft {0} muss eine gültige URL sein -typeMismatch.java.net.URI=Die Eigenschaft {0} muss eine gültige URI sein -typeMismatch.java.util.Date=Die Eigenschaft {0} muss ein gültiges Datum sein -typeMismatch.java.lang.Double=Die Eigenschaft {0} muss eine gültige Zahl sein -typeMismatch.java.lang.Integer=Die Eigenschaft {0} muss eine gültige Zahl sein -typeMismatch.java.lang.Long=Die Eigenschaft {0} muss eine gültige Zahl sein -typeMismatch.java.lang.Short=Die Eigenschaft {0} muss eine gültige Zahl sein -typeMismatch.java.math.BigDecimal=Die Eigenschaft {0} muss eine gültige Zahl sein -typeMismatch.java.math.BigInteger=Die Eigenschaft {0} muss eine gültige Zahl sein \ No newline at end of file diff --git a/out/production/rgms/messages_es.properties b/out/production/rgms/messages_es.properties deleted file mode 100644 index 915db132..00000000 --- a/out/production/rgms/messages_es.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no corresponde al patrón [{3}] -default.invalid.url.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no es una URL válida -default.invalid.creditCard.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no es un número de tarjeta de crédito válida -default.invalid.email.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no es una dirección de correo electrónico válida -default.invalid.range.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no entra en el rango válido de [{3}] a [{4}] -default.invalid.size.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no entra en el tamaño válido de [{3}] a [{4}] -default.invalid.max.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] excede el valor máximo [{3}] -default.invalid.min.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] es menos que el valor mínimo [{3}] -default.invalid.max.size.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] excede el tamaño máximo de [{3}] -default.invalid.min.size.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] es menor que el tamaño mínimo de [{3}] -default.invalid.validator.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no es válido -default.not.inlist.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no esta contenido dentro de la lista [{3}] -default.blank.message=La propiedad [{0}] de la clase [{1}] no puede ser vacía -default.not.equal.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] no puede igualar a [{3}] -default.null.message=La propiedad [{0}] de la clase [{1}] no puede ser nulo -default.not.unique.message=La propiedad [{0}] de la clase [{1}] con valor [{2}] debe ser única - -default.paginate.prev=Anterior -default.paginate.next=Siguiente -default.boolean.true=Verdadero -default.boolean.false=Falso -default.date.format=yyyy-MM-dd HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} creado -default.updated.message={0} {1} actualizado -default.deleted.message={0} {1} eliminado -default.not.deleted.message={0} {1} no puede eliminarse -default.not.found.message=No se encuentra {0} con id {1} -default.optimistic.locking.failure=Mientras usted editaba, otro usuario ha actualizado su {0} - -default.home.label=Principal -default.list.label={0} Lista -default.add.label=Agregar {0} -default.new.label=Nuevo {0} -default.create.label=Crear {0} -default.show.label=Mostar {0} -default.edit.label=Editar {0} - -default.button.create.label=Crear -default.button.edit.label=Editar -default.button.update.label=Actualizar -default.button.delete.label=Eliminar -default.button.delete.confirm.message=¿Está usted seguro? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL=La propiedad {0} debe ser una URL válida -typeMismatch.java.net.URI=La propiedad {0} debe ser una URI válida -typeMismatch.java.util.Date=La propiedad {0} debe ser una fecha válida -typeMismatch.java.lang.Double=La propiedad {0} debe ser un número válido -typeMismatch.java.lang.Integer=La propiedad {0} debe ser un número válido -typeMismatch.java.lang.Long=La propiedad {0} debe ser un número válido -typeMismatch.java.lang.Short=La propiedad {0} debe ser un número válido -typeMismatch.java.math.BigDecimal=La propiedad {0} debe ser un número válido -typeMismatch.java.math.BigInteger=La propiedad {0} debe ser un número válido \ No newline at end of file diff --git a/out/production/rgms/messages_fr.properties b/out/production/rgms/messages_fr.properties deleted file mode 100644 index 55721641..00000000 --- a/out/production/rgms/messages_fr.properties +++ /dev/null @@ -1,19 +0,0 @@ -default.doesnt.match.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] ne correspond pas au pattern [{3}] -default.invalid.url.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] n'est pas une URL valide -default.invalid.creditCard.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] n'est pas un numéro de carte de crédit valide -default.invalid.email.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] n'est pas une adresse e-mail valide -default.invalid.range.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] n'est pas contenue dans l'intervalle [{3}] à [{4}] -default.invalid.size.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] n'est pas contenue dans l'intervalle [{3}] à [{4}] -default.invalid.max.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] est supérieure à la valeur maximum [{3}] -default.invalid.min.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] est inférieure à la valeur minimum [{3}] -default.invalid.max.size.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] est supérieure à la valeur maximum [{3}] -default.invalid.min.size.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] est inférieure à la valeur minimum [{3}] -default.invalid.validator.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] n'est pas valide -default.not.inlist.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] ne fait pas partie de la liste [{3}] -default.blank.message=La propriété [{0}] de la classe [{1}] ne peut pas être vide -default.not.equal.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] ne peut pas être égale à [{3}] -default.null.message=La propriété [{0}] de la classe [{1}] ne peut pas être nulle -default.not.unique.message=La propriété [{0}] de la classe [{1}] avec la valeur [{2}] doit être unique - -default.paginate.prev=Précédent -default.paginate.next=Suivant diff --git a/out/production/rgms/messages_it.properties b/out/production/rgms/messages_it.properties deleted file mode 100644 index 938b276c..00000000 --- a/out/production/rgms/messages_it.properties +++ /dev/null @@ -1,19 +0,0 @@ -default.doesnt.match.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non corrisponde al pattern [{3}] -default.invalid.url.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non è un URL valido -default.invalid.creditCard.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non è un numero di carta di credito valido -default.invalid.email.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non è un indirizzo email valido -default.invalid.range.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non rientra nell'intervallo valido da [{3}] a [{4}] -default.invalid.size.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non rientra nell'intervallo di dimensioni valide da [{3}] a [{4}] -default.invalid.max.message=La proprietà [{0}] della classe [{1}] con valore [{2}] è maggiore di [{3}] -default.invalid.min.message=La proprietà [{0}] della classe [{1}] con valore [{2}] è minore di [{3}] -default.invalid.max.size.message=La proprietà [{0}] della classe [{1}] con valore [{2}] è maggiore di [{3}] -default.invalid.min.size.message=La proprietà [{0}] della classe [{1}] con valore [{2}] è minore di [{3}] -default.invalid.validator.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non è valida -default.not.inlist.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non è contenuta nella lista [{3}] -default.blank.message=La proprietà [{0}] della classe [{1}] non può essere vuota -default.not.equal.message=La proprietà [{0}] della classe [{1}] con valore [{2}] non può essere uguale a [{3}] -default.null.message=La proprietà [{0}] della classe [{1}] non può essere null -default.not.unique.message=La proprietà [{0}] della classe [{1}] con valore [{2}] deve essere unica - -default.paginate.prev=Precedente -default.paginate.next=Successivo \ No newline at end of file diff --git a/out/production/rgms/messages_ja.properties b/out/production/rgms/messages_ja.properties deleted file mode 100644 index f716d75b..00000000 --- a/out/production/rgms/messages_ja.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、[{3}]パターンと一致していません。 -default.invalid.url.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、有効なURLではありません。 -default.invalid.creditCard.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、有効なクレジットカード番号ではありません。 -default.invalid.email.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、有効なメールアドレスではありません。 -default.invalid.range.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、[{3}]から[{4}]範囲内を指定してください。 -default.invalid.size.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、[{3}]から[{4}]以内を指定してください。 -default.invalid.max.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、最大値[{3}]より大きいです。 -default.invalid.min.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、最小値[{3}]より小さいです。 -default.invalid.max.size.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、最大値[{3}]より大きいです。 -default.invalid.min.size.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、最小値[{3}]より小さいです。 -default.invalid.validator.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、カスタムバリデーションを通過できません。 -default.not.inlist.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、[{3}]リスト内に存在しません。 -default.blank.message=[{1}]クラスのプロパティ[{0}]の空白は許可されません。 -default.not.equal.message=クラス[{1}]プロパティ[{0}]の値[{2}]は、[{3}]と同等ではありません。 -default.null.message=[{1}]クラスのプロパティ[{0}]にnullは許可されません。 -default.not.unique.message=クラス[{1}]プロパティ[{0}]の値[{2}]は既に使用されています。 - -default.paginate.prev=戻る -default.paginate.next=次へ -default.boolean.true=はい -default.boolean.false=いいえ -default.date.format=yyyy/MM/dd HH:mm:ss z -default.number.format=0 - -default.created.message={0}(id:{1})を作成しました。 -default.updated.message={0}(id:{1})を更新しました。 -default.deleted.message={0}(id:{1})を削除しました。 -default.not.deleted.message={0}(id:{1})は削除できませんでした。 -default.not.found.message={0}(id:{1})は見つかりませんでした。 -default.optimistic.locking.failure=この{0}は編集中に他のユーザによって先に更新されています。 - -default.home.label=ホーム -default.list.label={0}リスト -default.add.label={0}を追加 -default.new.label={0}を新規作成 -default.create.label={0}を作成 -default.show.label={0}詳細 -default.edit.label={0}を編集 - -default.button.create.label=作成 -default.button.edit.label=編集 -default.button.update.label=更新 -default.button.delete.label=削除 -default.button.delete.confirm.message=本当に削除してよろしいですか? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL={0}は有効なURLでなければなりません。 -typeMismatch.java.net.URI={0}は有効なURIでなければなりません。 -typeMismatch.java.util.Date={0}は有効な日付でなければなりません。 -typeMismatch.java.lang.Double={0}は有効な数値でなければなりません。 -typeMismatch.java.lang.Integer={0}は有効な数値でなければなりません。 -typeMismatch.java.lang.Long={0}は有効な数値でなければなりません。 -typeMismatch.java.lang.Short={0}は有効な数値でなければなりません。 -typeMismatch.java.math.BigDecimal={0}は有効な数値でなければなりません。 -typeMismatch.java.math.BigInteger={0}は有効な数値でなければなりません。 diff --git a/out/production/rgms/messages_nl.properties b/out/production/rgms/messages_nl.properties deleted file mode 100644 index cd5cc94e..00000000 --- a/out/production/rgms/messages_nl.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] komt niet overeen met het vereiste patroon [{3}] -default.invalid.url.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] is geen geldige URL -default.invalid.creditCard.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] is geen geldig credit card nummer -default.invalid.email.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] is geen geldig e-mailadres -default.invalid.range.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] valt niet in de geldige waardenreeks van [{3}] tot [{4}] -default.invalid.size.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] valt niet in de geldige grootte van [{3}] tot [{4}] -default.invalid.max.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] overschrijdt de maximumwaarde [{3}] -default.invalid.min.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] is minder dan de minimumwaarde [{3}] -default.invalid.max.size.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] overschrijdt de maximumgrootte van [{3}] -default.invalid.min.size.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] is minder dan minimumgrootte van [{3}] -default.invalid.validator.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] is niet geldig -default.not.inlist.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] komt niet voor in de lijst [{3}] -default.blank.message=Attribuut [{0}] van entiteit [{1}] mag niet leeg zijn -default.not.equal.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] mag niet gelijk zijn aan [{3}] -default.null.message=Attribuut [{0}] van entiteit [{1}] mag niet leeg zijn -default.not.unique.message=Attribuut [{0}] van entiteit [{1}] met waarde [{2}] moet uniek zijn - -default.paginate.prev=Vorige -default.paginate.next=Volgende -default.boolean.true=Ja -default.boolean.false=Nee -default.date.format=dd-MM-yyyy HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} ingevoerd -default.updated.message={0} {1} gewijzigd -default.deleted.message={0} {1} verwijderd -default.not.deleted.message={0} {1} kon niet worden verwijderd -default.not.found.message={0} met id {1} kon niet worden gevonden -default.optimistic.locking.failure=Een andere gebruiker heeft deze {0} al gewijzigd - -default.home.label=Home -default.list.label={0} Overzicht -default.add.label=Toevoegen {0} -default.new.label=Invoeren {0} -default.create.label=Invoeren {0} -default.show.label=Details {0} -default.edit.label=Wijzigen {0} - -default.button.create.label=Invoeren -default.button.edit.label=Wijzigen -default.button.update.label=Opslaan -default.button.delete.label=Verwijderen -default.button.delete.confirm.message=Weet je het zeker? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL=Attribuut {0} is geen geldige URL -typeMismatch.java.net.URI=Attribuut {0} is geen geldige URI -typeMismatch.java.util.Date=Attribuut {0} is geen geldige datum -typeMismatch.java.lang.Double=Attribuut {0} is geen geldig nummer -typeMismatch.java.lang.Integer=Attribuut {0} is geen geldig nummer -typeMismatch.java.lang.Long=Attribuut {0} is geen geldig nummer -typeMismatch.java.lang.Short=Attribuut {0} is geen geldig nummer -typeMismatch.java.math.BigDecimal=Attribuut {0} is geen geldig nummer -typeMismatch.java.math.BigInteger=Attribuut {0} is geen geldig nummer diff --git a/out/production/rgms/messages_pt_BR.properties b/out/production/rgms/messages_pt_BR.properties deleted file mode 100644 index 334cd423..00000000 --- a/out/production/rgms/messages_pt_BR.properties +++ /dev/null @@ -1,203 +0,0 @@ - -default.doesnt.match.message=O campo [{0}] da classe [{1}] com o valor [{2}] não atende ao padrão definido [{3}] -default.invalid.url.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é uma URL válida -default.invalid.creditCard.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é um número válido de cartão de crédito -default.invalid.email.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é um endereço de email válido. -default.invalid.range.message=O campo [{0}] da classe [{1}] com o valor [{2}] não está entre a faixa de valores válida de [{3}] até [{4}] -default.invalid.size.message=O campo [{0}] da classe [{1}] com o valor [{2}] não está na faixa de tamanho válida de [{3}] até [{4}] -default.invalid.max.message=O campo [{0}] da classe [{1}] com o valor [{2}] ultrapass o valor máximo [{3}] -default.invalid.min.message=O campo [{0}] da classe [{1}] com o valor [{2}] não atinge o valor mínimo [{3}] -default.invalid.max.size.message=O campo [{0}] da classe [{1}] com o valor [{2}] ultrapassa o tamanho máximo de [{3}] -default.invalid.min.size.message=O campo [{0}] da classe [{1}] com o valor [{2}] não atinge o tamanho mínimo de [{3}] -default.invalid.validator.message=O campo [{0}] da classe [{1}] com o valor [{2}] não passou na validação -default.not.inlist.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é um valor dentre os permitidos na lista [{3}] -default.blank.message=O campo [{0}] da classe [{1}] não pode ficar em branco -default.not.equal.message=O campo [{0}] da classe [{1}] com o valor [{2}] não pode ser igual a [{3}] -default.null.message=O campo [{0}] da classe [{1}] não pode ser vazia -default.not.unique.message=O campo [{0}] da classe [{1}] com o valor [{2}] deve ser único - -default.paginate.prev=Anterior -default.paginate.next=Próximo -default.boolean.true=Sim -default.boolean.false=Não -default.date.format=dd/MM/yyyy HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} criado -default.updated.message={0} {1} atualizado -default.deleted.message={0} {1} removido -default.not.deleted.message={0} {1} não pode ser removido -default.not.found.message={0} não foi encontrado com id {1} -default.optimistic.locking.failure=Outro usuário atualizou este [{0}] enquanto você tentou salvá-lo - -default.home.label=Principal -default.list.label={0} Listagem -default.add.label=Adicionar {0} -default.new.label=Novo {0} -default.create.label=Criar {0} -default.show.label=Ver {0} -default.edit.label=Editar {0} - -default.button.create.label=Criar -default.button.edit.label=Editar -default.button.update.label=Alterar -default.button.delete.label=Remover -default.button.list.label=Listagem -default.button.delete.confirm.message=Tem certeza? - - -typeMismatch.java.net.URL=O campo {0} deve ser uma URL válida. -typeMismatch.java.net.URI=O campo {0} deve ser uma URI válida. -typeMismatch.java.util.Date=O campo {0} deve ser uma data válida -typeMismatch.java.lang.Double=O campo {0} deve ser um número válido. -typeMismatch.java.lang.Integer=O campo {0} deve ser um número válido. -typeMismatch.java.lang.Long=O campo {0} deve ser um número válido. -typeMismatch.java.lang.Short=O campo {0} deve ser um número válido. -typeMismatch.java.math.BigDecimal=O campo {0} deve ser um número válido. -typeMismatch.java.math.BigInteger=O campo {0} deve ser um número válido. - - - -#if($inter) -default.member.label=Membros -default.publication.label=Publicações -default.MSGIni.label=Escolha uma opção do menu acima -default.periodico.label=Periodico -default.conferencia.label=Conferencia -default.ferramenta.label=Ferramenta -#if($maisresul) -default.dissertacao.label=Dissertacao -default.tese.label=Tese -#end -default.bookchapter.label=Capítulo de livro -default.technicalReport.label=Relatorio Tecnico -default.msgBusca.label=Listagem, busca, edição e remoção de publicações -default.title.label=Título -default.author.label=Autor -default.year.label=Ano -default.search.label=Busca - -default.orientation.label = Orientation -default.orientation.imported.message = As orientations não existentes foram importadas com sucesso -default.orientation.checkVersion.message Um outro usuário atualizou este orientation enquanto você estava editando - -default.article.imported.message = As article não existentes foram importadas com sucesso -default.article.checkVersion.message Um outro usuário atualizou este orientation enquanto você estava editando - - - - -conferencia.title.label=Título -conferencia.author.label=Autor -conferencia.conference.label=Conferencia -conferencia.year.label=Ano -conferencia.pageInitial.label=Página Inicial -conferencia.pageFinal.label=Página Final -conferencia.month.label=Mês -conferencia.arquivo.label=Arquivo -conferencia.label=Conferencia -conferencia.addAutor.label='Adicionar Autor' -conferencia.members.label=Membros Autores - - -#if($maisresul) -dissertacao.members.label=Membros Autores -dissertacao.title.label=Título -dissertacao.school.label=Faculdade -dissertacao.year.label=Ano -dissertacao.month.label=Mês -dissertacao.arquivo.label=Arquivo -dissertacao.author.label=Autor -dissertacao.label=Dissertacao -#end - - -ferramenta.members.label=Membros Autores -ferramenta.author.label=Autor -ferramenta.addAauthor.label='Adicionar Autor' -ferramenta.descricao.label=Descrição -ferramenta.link.label=Sitio -ferramenta.publicacaoAssociada.label=Publicação Associada -ferramenta.title.label=Título -ferramenta.year.label=Ano -ferramenta.label=Ferramenta -ferramenta.edit.conflict=Outro usuário estava editando esta Ferramenta enquanto você editava - -researchGroup.label=Grupo de Pesquisa -researchGroup.name.label=Nome -researchGroup.twitter.label=Twitter -researchGroup.description.label=Descrição -researchGroup.childOf.label=ResearchGroup superior -researchGroup.members.label=Membros -researchGroup.hasCycle=Há um ciclo relacionado com este research group - -periodico.title.label=Título -periodico.members.label=Membros Autores -periodico.addAauthor.label='Adicionar Autor' -periodico.author.label=Autor -periodico.journal.label=Periodico -periodico.number.label=Número -periodico.pageInitial.label=Página Inicial -periodico.pageFinal.label=Página Final -periodico.volume.label=Volume -periodico.year.label=Ano -periodico.arquivo.label=Arquivo -periodico.label=Periodico -periodico.duplicatetitle.failure = Periódico não cadastrado porque já existe um periódico com o mesmo título -periodico.filesaving.failure = Periódico não cadastrado devido a problema na gravação do arquivo -periodico.saving.failure = Periódico não cadastrado devido a problema na gravação - - - -technicalReport.title.label = Título -technicalReport.publicationDate.label = Data de Publicação -technicalReport.file.label = Arquivo -technicalReport.researchLine.label = Linha de Pesquisa -technicalReport.institution.label = Instituição -technicalReport.members.label = Membros Autores -technicalReport.filesaving.failure = Relatório não cadastrado devido a problema na gravação do arquivo -technicalReport.saving.failure = Relatório não cadastrado devido a problema na gravação -technicalReport.label=Relatorio Tecnico - -#if($maisresul) -tese.author.label=Autor -tese.title.label=Título -tese.school.label=Faculdade -tese.year.label=Ano -tese.month.label=Mês -tese.arquivo.label=Arquivo -tese.label=Tese -tese.duplicatetitle.failure = Tese não cadastrada porque já existe uma tese com o mesmo título -#end - -#if($news) -news.not.created.unicity.rule.message=Já existe no sistema uma noticia cadastrada o esta descrição de data para este grupo de pesquisa. -default.button.update.twitter.label=Atualizar noticias do twitter -news.label=Notícias -default.news.label=Notícias -#end - -default.report.label=Relatorio de {0}s -default.citations.label=Citações - -#if($visit) -default.visit.label=Visita -visit.label=Visita -#end - -mail.plugin.not.configured=Plugin de email nao configurado - -#if($member) -member.label=Member -member.start.label=Início -member.end.label=Fim -member.status_H.label=Status H -#end - -#if($record) -default.record.label=Registro -record.label=Registro -record.start.label=Início -record.end.label=Fim -record.status_H.label=Status H -#end diff --git a/out/production/rgms/messages_pt_PT.properties b/out/production/rgms/messages_pt_PT.properties deleted file mode 100644 index a3860706..00000000 --- a/out/production/rgms/messages_pt_PT.properties +++ /dev/null @@ -1,34 +0,0 @@ -# -# translation by miguel.ping@gmail.com, based on pt_BR translation by Lucas Teixeira - lucastex@gmail.com -# - -default.doesnt.match.message=O campo [{0}] da classe [{1}] com o valor [{2}] não corresponde ao padrão definido [{3}] -default.invalid.url.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é um URL válido -default.invalid.creditCard.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é um número válido de cartão de crédito -default.invalid.email.message=O campo [{0}] da classe [{1}] com o valor [{2}] não é um endereço de email válido. -default.invalid.range.message=O campo [{0}] da classe [{1}] com o valor [{2}] não está dentro dos limites de valores válidos de [{3}] a [{4}] -default.invalid.size.message=O campo [{0}] da classe [{1}] com o valor [{2}] está fora dos limites de tamanho válido de [{3}] a [{4}] -default.invalid.max.message=O campo [{0}] da classe [{1}] com o valor [{2}] ultrapassa o valor máximo [{3}] -default.invalid.min.message=O campo [{0}] da classe [{1}] com o valor [{2}] não atinge o valor mínimo [{3}] -default.invalid.max.size.message=O campo [{0}] da classe [{1}] com o valor [{2}] ultrapassa o tamanho máximo de [{3}] -default.invalid.min.size.message=O campo [{0}] da classe [{1}] com o valor [{2}] não atinge o tamanho mínimo de [{3}] -default.invalid.validator.message=O campo [{0}] da classe [{1}] com o valor [{2}] não passou na validação -default.not.inlist.message=O campo [{0}] da classe [{1}] com o valor [{2}] não se encontra nos valores permitidos da lista [{3}] -default.blank.message=O campo [{0}] da classe [{1}] não pode ser vazio -default.not.equal.message=O campo [{0}] da classe [{1}] com o valor [{2}] não pode ser igual a [{3}] -default.null.message=O campo [{0}] da classe [{1}] não pode ser vazio -default.not.unique.message=O campo [{0}] da classe [{1}] com o valor [{2}] deve ser único - -default.paginate.prev=Anterior -default.paginate.next=Próximo - -# Mensagens de erro em atribuição de valores. Use "typeMismatch.$className.$propertyName" para personalizar(eg typeMismatch.Book.author) -typeMismatch.java.net.URL=O campo {0} deve ser um URL válido. -typeMismatch.java.net.URI=O campo {0} deve ser um URI válido. -typeMismatch.java.util.Date=O campo {0} deve ser uma data válida -typeMismatch.java.lang.Double=O campo {0} deve ser um número válido. -typeMismatch.java.lang.Integer=O campo {0} deve ser um número válido. -typeMismatch.java.lang.Long=O campo {0} deve ser um número valido. -typeMismatch.java.lang.Short=O campo {0} deve ser um número válido. -typeMismatch.java.math.BigDecimal=O campo {0} deve ser um número válido. -typeMismatch.java.math.BigInteger=O campo {0} deve ser um número válido. diff --git a/out/production/rgms/messages_ru.properties b/out/production/rgms/messages_ru.properties deleted file mode 100644 index 53a4bdc4..00000000 --- a/out/production/rgms/messages_ru.properties +++ /dev/null @@ -1,31 +0,0 @@ -default.doesnt.match.message=Значение [{2}] поля [{0}] класса [{1}] не соответствует образцу [{3}] -default.invalid.url.message=Значение [{2}] поля [{0}] класса [{1}] не является допустимым URL-адресом -default.invalid.creditCard.message=Значение [{2}] поля [{0}] класса [{1}] не является допустимым номером кредитной карты -default.invalid.email.message=Значение [{2}] поля [{0}] класса [{1}] не является допустимым e-mail адресом -default.invalid.range.message=Значение [{2}] поля [{0}] класса [{1}] не попадает в допустимый интервал от [{3}] до [{4}] -default.invalid.size.message=Размер поля [{0}] класса [{1}] (значение: [{2}]) не попадает в допустимый интервал от [{3}] до [{4}] -default.invalid.max.message=Значение [{2}] поля [{0}] класса [{1}] больше чем максимально допустимое значение [{3}] -default.invalid.min.message=Значение [{2}] поля [{0}] класса [{1}] меньше чем минимально допустимое значение [{3}] -default.invalid.max.size.message=Размер поля [{0}] класса [{1}] (значение: [{2}]) больше чем максимально допустимый размер [{3}] -default.invalid.min.size.message=Размер поля [{0}] класса [{1}] (значение: [{2}]) меньше чем минимально допустимый размер [{3}] -default.invalid.validator.message=Значение [{2}] поля [{0}] класса [{1}] не допустимо -default.not.inlist.message=Значение [{2}] поля [{0}] класса [{1}] не попадает в список допустимых значений [{3}] -default.blank.message=Поле [{0}] класса [{1}] не может быть пустым -default.not.equal.message=Значение [{2}] поля [{0}] класса [{1}] не может быть равно [{3}] -default.null.message=Поле [{0}] класса [{1}] не может иметь значение null -default.not.unique.message=Значение [{2}] поля [{0}] класса [{1}] должно быть уникальным - -default.paginate.prev=Предыдушая страница -default.paginate.next=Следующая страница - -# Ошибки при присвоении данных. Для точной настройки для полей классов используйте -# формат "typeMismatch.$className.$propertyName" (например, typeMismatch.Book.author) -typeMismatch.java.net.URL=Значение поля {0} не является допустимым URL -typeMismatch.java.net.URI=Значение поля {0} не является допустимым URI -typeMismatch.java.util.Date=Значение поля {0} не является допустимой датой -typeMismatch.java.lang.Double=Значение поля {0} не является допустимым числом -typeMismatch.java.lang.Integer=Значение поля {0} не является допустимым числом -typeMismatch.java.lang.Long=Значение поля {0} не является допустимым числом -typeMismatch.java.lang.Short=Значение поля {0} не является допустимым числом -typeMismatch.java.math.BigDecimal=Значение поля {0} не является допустимым числом -typeMismatch.java.math.BigInteger=Значение поля {0} не является допустимым числом diff --git a/out/production/rgms/messages_sv.properties b/out/production/rgms/messages_sv.properties deleted file mode 100644 index 61899d79..00000000 --- a/out/production/rgms/messages_sv.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=Attributet [{0}] för klassen [{1}] med värde [{2}] matchar inte mot uttrycket [{3}] -default.invalid.url.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är inte en giltig URL -default.invalid.creditCard.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är inte ett giltigt kreditkortsnummer -default.invalid.email.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är inte en giltig e-postadress -default.invalid.range.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är inte inom intervallet [{3}] till [{4}] -default.invalid.size.message=Attributet [{0}] för klassen [{1}] med värde [{2}] har en storlek som inte är inom [{3}] till [{4}] -default.invalid.max.message=Attributet [{0}] för klassen [{1}] med värde [{2}] överskrider maxvärdet [{3}] -default.invalid.min.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är mindre än minimivärdet [{3}] -default.invalid.max.size.message=Attributet [{0}] för klassen [{1}] med värde [{2}] överskrider maxstorleken [{3}] -default.invalid.min.size.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är mindre än minimistorleken [{3}] -default.invalid.validator.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är inte giltigt enligt anpassad regel -default.not.inlist.message=Attributet [{0}] för klassen [{1}] med värde [{2}] är inte giltigt, måste vara ett av [{3}] -default.blank.message=Attributet [{0}] för klassen [{1}] får inte vara tomt -default.not.equal.message=Attributet [{0}] för klassen [{1}] med värde [{2}] får inte vara lika med [{3}] -default.null.message=Attributet [{0}] för klassen [{1}] får inte vara tomt -default.not.unique.message=Attributet [{0}] för klassen [{1}] med värde [{2}] måste vara unikt - -default.paginate.prev=Föregående -default.paginate.next=Nästa -default.boolean.true=Sant -default.boolean.false=Falskt -default.date.format=yyyy-MM-dd HH:mm:ss z -default.number.format=0 - -default.created.message={0} {1} skapades -default.updated.message={0} {1} uppdaterades -default.deleted.message={0} {1} borttagen -default.not.deleted.message={0} {1} kunde inte tas bort -default.not.found.message={0} med id {1} kunde inte hittas -default.optimistic.locking.failure=En annan användare har uppdaterat det här {0} objektet medan du redigerade det - -default.home.label=Hem -default.list.label= {0} - Lista -default.add.label=Lägg till {0} -default.new.label=Skapa {0} -default.create.label=Skapa {0} -default.show.label=Visa {0} -default.edit.label=Ändra {0} - -default.button.create.label=Skapa -default.button.edit.label=Ändra -default.button.update.label=Uppdatera -default.button.delete.label=Ta bort -default.button.delete.confirm.message=Är du säker? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL=Värdet för {0} måste vara en giltig URL -typeMismatch.java.net.URI=Värdet för {0} måste vara en giltig URI -typeMismatch.java.util.Date=Värdet {0} måste vara ett giltigt datum -typeMismatch.java.lang.Double=Värdet {0} måste vara ett giltigt nummer -typeMismatch.java.lang.Integer=Värdet {0} måste vara ett giltigt heltal -typeMismatch.java.lang.Long=Värdet {0} måste vara ett giltigt heltal -typeMismatch.java.lang.Short=Värdet {0} måste vara ett giltigt heltal -typeMismatch.java.math.BigDecimal=Värdet {0} måste vara ett giltigt nummer -typeMismatch.java.math.BigInteger=Värdet {0} måste vara ett giltigt heltal \ No newline at end of file diff --git a/out/production/rgms/messages_th.properties b/out/production/rgms/messages_th.properties deleted file mode 100644 index 31c8668a..00000000 --- a/out/production/rgms/messages_th.properties +++ /dev/null @@ -1,55 +0,0 @@ -default.doesnt.match.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ถูกต้องตามรูปแบบที่กำหนดไว้ใน [{3}] -default.invalid.url.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ถูกต้องตามรูปแบบ URL -default.invalid.creditCard.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ถูกต้องตามรูปแบบหมายเลขบัตรเครดิต -default.invalid.email.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ถูกต้องตามรูปแบบอีเมล์ -default.invalid.range.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ได้มีค่าที่ถูกต้องในช่วงจาก [{3}] ถึง [{4}] -default.invalid.size.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ได้มีขนาดที่ถูกต้องในช่วงจาก [{3}] ถึง [{4}] -default.invalid.max.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] มีค่าเกิดกว่าค่ามากสุด [{3}] -default.invalid.min.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] มีค่าน้อยกว่าค่าต่ำสุด [{3}] -default.invalid.max.size.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] มีขนาดเกินกว่าขนาดมากสุดของ [{3}] -default.invalid.min.size.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] มีขนาดต่ำกว่าขนาดต่ำสุดของ [{3}] -default.invalid.validator.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ผ่านการทวนสอบค่าที่ตั้งขึ้น -default.not.inlist.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่ได้อยู่ในรายการต่อไปนี้ [{3}] -default.blank.message=คุณสมบัติ [{0}] ของคลาส [{1}] ไม่สามารถเป็นค่าว่างได้ -default.not.equal.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] ไม่สามารถเท่ากับ [{3}] ได้ -default.null.message=คุณสมบัติ [{0}] ของคลาส [{1}] ไม่สามารถเป็น null ได้ -default.not.unique.message=คุณสมบัติ [{0}] ของคลาส [{1}] ซึ่งมีค่าเป็น [{2}] จะต้องไม่ซ้ำ (unique) - -default.paginate.prev=ก่อนหน้า -default.paginate.next=ถัดไป -default.boolean.true=จริง -default.boolean.false=เท็จ -default.date.format=dd-MM-yyyy HH:mm:ss z -default.number.format=0 - -default.created.message=สร้าง {0} {1} เรียบร้อยแล้ว -default.updated.message=ปรับปรุง {0} {1} เรียบร้อยแล้ว -default.deleted.message=ลบ {0} {1} เรียบร้อยแล้ว -default.not.deleted.message=ไม่สามารถลบ {0} {1} -default.not.found.message=ไม่พบ {0} ด้วย id {1} นี้ -default.optimistic.locking.failure=มีผู้ใช้ท่านอื่นปรับปรุง {0} ขณะที่คุณกำลังแก้ไขข้อมูลอยู่ - -default.home.label=หน้าแรก -default.list.label=รายการ {0} -default.add.label=เพิ่ม {0} -default.new.label=สร้าง {0} ใหม่ -default.create.label=สร้าง {0} -default.show.label=แสดง {0} -default.edit.label=แก้ไข {0} - -default.button.create.label=สร้าง -default.button.edit.label=แก้ไข -default.button.update.label=ปรับปรุง -default.button.delete.label=ลบ -default.button.delete.confirm.message=คุณแน่ใจหรือไม่ ? - -# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author) -typeMismatch.java.net.URL=คุณสมบัติ '{0}' จะต้องเป็นค่า URL ที่ถูกต้อง -typeMismatch.java.net.URI=คุณสมบัติ '{0}' จะต้องเป็นค่า URI ที่ถูกต้อง -typeMismatch.java.util.Date=คุณสมบัติ '{0}' จะต้องมีค่าเป็นวันที่ -typeMismatch.java.lang.Double=คุณสมบัติ '{0}' จะต้องมีค่าเป็นจำนวนประเภท Double -typeMismatch.java.lang.Integer=คุณสมบัติ '{0}' จะต้องมีค่าเป็นจำนวนประเภท Integer -typeMismatch.java.lang.Long=คุณสมบัติ '{0}' จะต้องมีค่าเป็นจำนวนประเภท Long -typeMismatch.java.lang.Short=คุณสมบัติ '{0}' จะต้องมีค่าเป็นจำนวนประเภท Short -typeMismatch.java.math.BigDecimal=คุณสมบัติ '{0}' จะต้องมีค่าเป็นจำนวนประเภท BigDecimal -typeMismatch.java.math.BigInteger=คุณสมบัติ '{0}' จะต้องมีค่าเป็นจำนวนประเภท BigInteger diff --git a/out/production/rgms/messages_zh_CN.properties b/out/production/rgms/messages_zh_CN.properties deleted file mode 100644 index b89bc933..00000000 --- a/out/production/rgms/messages_zh_CN.properties +++ /dev/null @@ -1,18 +0,0 @@ -default.blank.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u4E0D\u80FD\u4E3A\u7A7A -default.doesnt.match.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0E\u5B9A\u4E49\u7684\u6A21\u5F0F [{3}]\u4E0D\u5339\u914D -default.invalid.creditCard.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0D\u662F\u4E00\u4E2A\u6709\u6548\u7684\u4FE1\u7528\u5361\u53F7 -default.invalid.email.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0D\u662F\u4E00\u4E2A\u5408\u6CD5\u7684\u7535\u5B50\u90AE\u4EF6\u5730\u5740 -default.invalid.max.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u6BD4\u6700\u5927\u503C [{3}]\u8FD8\u5927 -default.invalid.max.size.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u7684\u5927\u5C0F\u6BD4\u6700\u5927\u503C [{3}]\u8FD8\u5927 -default.invalid.min.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u6BD4\u6700\u5C0F\u503C [{3}]\u8FD8\u5C0F -default.invalid.min.size.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u7684\u5927\u5C0F\u6BD4\u6700\u5C0F\u503C [{3}]\u8FD8\u5C0F -default.invalid.range.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0D\u5728\u5408\u6CD5\u7684\u8303\u56F4\u5185( [{3}] \uFF5E [{4}] ) -default.invalid.size.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u7684\u5927\u5C0F\u4E0D\u5728\u5408\u6CD5\u7684\u8303\u56F4\u5185( [{3}] \uFF5E [{4}] ) -default.invalid.url.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0D\u662F\u4E00\u4E2A\u5408\u6CD5\u7684URL -default.invalid.validator.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u672A\u80FD\u901A\u8FC7\u81EA\u5B9A\u4E49\u7684\u9A8C\u8BC1 -default.not.equal.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0E[{3}]\u4E0D\u76F8\u7B49 -default.not.inlist.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u4E0D\u5728\u5217\u8868\u7684\u53D6\u503C\u8303\u56F4\u5185 -default.not.unique.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u7684\u503C[{2}]\u5FC5\u987B\u662F\u552F\u4E00\u7684 -default.null.message=[{1}]\u7C7B\u7684\u5C5E\u6027[{0}]\u4E0D\u80FD\u4E3Anull -default.paginate.next=\u4E0B\u9875 -default.paginate.prev=\u4E0A\u9875 diff --git a/out/production/rgms/shiro.properties b/out/production/rgms/shiro.properties deleted file mode 100644 index ddba8d9b..00000000 --- a/out/production/rgms/shiro.properties +++ /dev/null @@ -1 +0,0 @@ -login.failed = Invalid username and/or password diff --git a/out/test/rgms/sample.bibtex b/out/test/rgms/sample.bibtex deleted file mode 100644 index 7e776532..00000000 --- a/out/test/rgms/sample.bibtex +++ /dev/null @@ -1,26 +0,0 @@ -@MASTERSTHESIS{Gor:2008, - author = {Samir Gorsky}, - title = {A semntica algbrica para as lgicas modais e seu interesse filosfico}, - school = {IFCH-UNICAMP}, - year = {2008}, - address = {Campinas, Brazil}, - note = {\\ URL = http://samirgorsky.vilabol.uol.com.br/logicamodal.pdf}, -} - -@PHDTHESIS{dCosta_1963_Inconsistent_Formal_Systems, - author = {N. C. A. da Costa}, - title = "Inconsistent Formal Systems \emph{(in Portuguese)}", - school = {Federal University of Parana}, - year = {1963}, - address = "Curitiba, Brazil", - note = {Edited by Editora UFPR, Curitiba, 1993}, -} - -@PHDTHESIS{diogo_doctor, - author = {D. V. de S. Silva}, - title = "Doctor Thesis", - school = {Federal University of Pernambuco}, - year = {2013}, - address = "Recife, Brazil", - note = {Edited by Editora UFPE, Recife, 2013}, -} \ No newline at end of file diff --git a/out/test/rgms/steps/CCFinder.pdf b/out/test/rgms/steps/CCFinder.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/CCFinder.pdf and /dev/null differ diff --git a/out/test/rgms/steps/Delete dissertation.txt b/out/test/rgms/steps/Delete dissertation.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Delete dissertation.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/Dissertationduplicated.txt b/out/test/rgms/steps/Dissertationduplicated.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Dissertationduplicated.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/Dissertationduplicated2.txt b/out/test/rgms/steps/Dissertationduplicated2.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Dissertationduplicated2.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/Dissertationwithoutschool.txt b/out/test/rgms/steps/Dissertationwithoutschool.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Dissertationwithoutschool.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/Editdissertation.txt b/out/test/rgms/steps/Editdissertation.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Editdissertation.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/EvaluateNLS.txt b/out/test/rgms/steps/EvaluateNLS.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/EvaluateNLS.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/Joee.pdf b/out/test/rgms/steps/Joee.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/Joee.pdf and /dev/null differ diff --git a/out/test/rgms/steps/Joee1.pdf b/out/test/rgms/steps/Joee1.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/Joee1.pdf and /dev/null differ diff --git a/out/test/rgms/steps/Newdissertation.txt b/out/test/rgms/steps/Newdissertation.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Newdissertation.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/Newdissertation2.txt b/out/test/rgms/steps/Newdissertation2.txt deleted file mode 100644 index a0e749b4..00000000 --- a/out/test/rgms/steps/Newdissertation2.txt +++ /dev/null @@ -1,409 +0,0 @@ -| Loading Grails 2.1.0 -| Configuring classpath. -| Environment set to test..... -| Compiling 1 source files..... -| Packaging Grails application. -| Compiling 1 source files..... -| Running Grails application -| Server running. Browse to http://localhost:8080/rgms -| Compiling 48 source files. -| Running 89 cucumber tests... -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at pages.UserRegisterPage.createNewUser(UserRegisterPage.groovy:33) - at AuthenticationSteps$_run_closure15.doCall(AuthenticationSteps.groovy:84) - at ?.When I register a user with success(Authentication.feature:25) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at geb.content.NavigableSupport.propertyMissing(NavigableSupport.groovy:143) - at AuthenticationSteps$_run_closure19.doCall(AuthenticationSteps.groovy:109) - at ?.When I try to create a "newuser" username with the "invalid email abcde" email(Authentication.feature:33) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure21.doCall(AuthenticationSteps.groovy:126) - at ?.And The University field is filled with "Federal University of Pernambuco"(Authentication.feature:66) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at AuthenticationSteps$_run_closure22.doCall(AuthenticationSteps.groovy:132) - at ?.And I mistype my password at the second password field(Authentication.feature:82) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:13) -Assertion failed: - -assert bookChapter != null - | | - null false - - at BookChapterSteps$_run_closure4.doCall(BookChapterSteps.groovy:31) - at ?.Given the book chapter "Next Generation Software Product Line Engineering" is stored in the system with file name "NGSPL-0.pdf"(BookChapter.feature:18) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "I International Conference on Software Engineering" is stored in the system with file name "IICSE-0.pdf"(Conferencia.feature:13) -Assertion failed: - -assert conferencia != null - | | - null false - - at ConferenciaSteps$_run_closure4.doCall(ConferenciaSteps.groovy:28) - at ?.Given the conferencia "IV Conference on Software Product Lines" is stored in the system with file name "IICSE.pdf"(Conferencia.feature:18) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao edit"(Dissertacao.feature:29) -Assertion failed: - -assert article != null - | | - null false - - at DissertacaoSteps$_run_closure10.doCall(DissertacaoSteps.groovy:63) - at ?.Given the system has a dissertation entitled "Nova Dissertacao delete"(Dissertacao.feature:38) -Assertion failed: - -title ==~ /Dissertacao Listagem/ -| | -| false -Grails Runtime Exception - - at pages.DissertationPage$__clinit__closure1.doCall(DissertationPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at DissertacaoSteps$_run_closure16.doCall(DissertacaoSteps.groovy:91) - at ?.Then I'm still on dissertation page(Dissertacao.feature:49) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadDissertacao(TestDataAndOperations.groovy:201) - at DissertacaoSteps$_run_closure18.doCall(DissertacaoSteps.groovy:98) - at ?.When I upload a new dissertation "C:\testelattes.xml"(Dissertacao.feature:53) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:8) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Nova Ferramenta"(Ferramenta.feature:13) -Assertion failed: - -assert article != null - | | - null false - - at FerramentaSteps$_run_closure1.doCall(FerramentaSteps.groovy:15) - at ?.Given The system has a ferramenta entitled "Ferramenta1"(Ferramenta.feature:18) -groovy.lang.MissingMethodException: No signature of method: rgms.publication.Ferramenta.findByTitle() is applicable for argument types: () values: [] -Possible solutions: findByTitle([Ljava.lang.Object;) - at org.grails.datastore.gorm.GormStaticApi$_methodMissing_closure2.doCall(GormStaticApi.groovy:105) - at FerramentaSteps$_run_closure10.doCall(FerramentaSteps.groovy:51) - at ?.Then The ferramenta is not stored(Ferramenta.feature:27) -Assertion failed: - -title ==~ /Ferramenta Listagem/ -| | -| false -Grails Runtime Exception - - at pages.FerramentaPage$__clinit__closure1.doCall(FerramentaPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at FerramentaSteps$_run_closure17.doCall(FerramentaSteps.groovy:92) - at ?.Then I'm still on ferramenta page(Ferramenta.feature:32) -java.io.FileNotFoundException: C:\testelattes.xml (O sistema n�o pode encontrar o arquivo especificado) - at java.io.FileInputStream.(FileInputStream.java:138) - at steps.TestDataAndOperations.uploadFerramenta(TestDataAndOperations.groovy:209) - at FerramentaSteps$_run_closure19.doCall(FerramentaSteps.groovy:99) - at ?.When I upload a new ferramenta "C:\testelattes.xml"(Ferramenta.feature:36) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at ?.When I create a member with username "usernametest"(Member.feature:8) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} j63sm12972692yhh.17 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure2.doCall(MemberSteps.groovy:16) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:12) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} v68sm12949021yhn.22 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -org.springframework.mail.MailAuthenticationException: Authentication failed; nested exception is javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at ?.Given the system has member with username "usernametest"(Member.feature:17) -Caused by: javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at -535-5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 -535 5.7.8 {BADCREDENTIALS} a28sm13071816yha.0 - gsmtp - - at com.sun.mail.smtp.SMTPTransport$Authenticator.authenticate(SMTPTransport.java:648) - at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:583) - at javax.mail.Service.connect(Service.java:291) - at grails.plugin.mail.MailMessageBuilder.sendMessage(MailMessageBuilder.groovy:104) - at grails.plugin.mail.MailService.sendMail(MailService.groovy:41) - at MailGrailsPlugin$_configureSendMail_closure6.doCall(MailGrailsPlugin.groovy:170) - at rgms.member.MemberController$_closure4.doCall(MemberController.groovy:59) - at steps.TestDataAndOperations.createMember(TestDataAndOperations.groovy:319) - at MemberSteps$_run_closure10.doCall(MemberSteps.groovy:57) - at cucumber.runtime.groovy.GroovyBackend.invoke(GroovyBackend.java:143) - at cucumber.runtime.groovy.GroovyStepDefinition$1.call(GroovyStepDefinition.java:67) - at cucumber.runtime.Timeout.timeout(Timeout.java:12) - at cucumber.runtime.groovy.GroovyStepDefinition.execute(GroovyStepDefinition.java:64) - at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:38) - at cucumber.runtime.Runtime.runStep(Runtime.java:267) - at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44) - at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39) - at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:36) - at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:112) - at grails.plugin.cucumber.Cucumber$_run_closure2.doCall(Cucumber.groovy:58) - at grails.plugin.cucumber.Cucumber.run(Cucumber.groovy:57) - at grails.plugin.cucumber.CucumberTestType.runFeatures(CucumberTestType.groovy:102) - at grails.plugin.cucumber.CucumberTestType.doRun(CucumberTestType.groovy:57) - at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290) - at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248) - at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195) - at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184) - at TestApp$_run_closure1.doCall(TestApp.groovy:82) -Assertion failed: - -title ==~ /Ver Member/ -| | -| false -Grails Runtime Exception - - at pages.member.MemberViewPage$__clinit__closure1.doCall(MemberViewPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at MemberSteps$_run_closure18.doCall(MemberSteps.groovy:106) - at ?.Then I am on the member show page(Member.feature:34) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:7) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:13) -java.lang.IncompatibleClassChangeError: the number of constructors during runtime and compile time for java.lang.Exception do not match. Expected 4 but got 5 - at geb.error.GebException.(GebException.groovy:20) - at geb.error.UndefinedPageContentException.(UndefinedPageContentException.groovy:20) - at geb.content.NavigableSupport.getContent(NavigableSupport.groovy:45) - at geb.content.NavigableSupport.methodMissing(NavigableSupport.groovy:123) - at ReportsSteps$_run_closure2.doCall(ReportsSteps.groovy:24) - at ?.When I select the "1" option at the Member list(Reports.feature:19) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo1" group(Reports.feature:24) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo12" group(Reports.feature:30) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupListPage$__clinit__closure1.doCall(ResearchGroupListPage.groovy:9) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ReportsSteps$_run_closure9.doCall(ReportsSteps.groovy:86) - at ?.Given I am at the Research Group list page and I select the "testehugo123" group(Reports.feature:36) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure22.doCall(ResearchGroupSteps.groovy:123) - at ?.And i select the new research group option at research group list page(ResearchGroup.feature:52) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "grupo" stored in the system(ResearchGroup.feature:56) -groovy.lang.MissingMethodException: No signature of method: static pages.GetPageTitle.getMessage() is applicable for argument types: (java.lang.String) values: [researchGroup.label] -Possible solutions: getMessage(java.lang.String) - at pages.ResearchGroupPage$__clinit__closure1.doCall(ResearchGroupPage.groovy:20) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at ResearchGroupSteps$_run_closure24.doCall(ResearchGroupSteps.groovy:141) - at ?.Given the system has a "Research Group" named "PESQUISA" stored in the system(ResearchGroup.feature:62) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:10) -Assertion failed: - -title ==~ /Ver TechnicalReport/ -| | -| false -TechnicalReport Listagem - - at pages.TechnicalReportShowPage$__clinit__closure1.doCall(TechnicalReportShowPage.groovy:10) - at geb.Page.verifyAt(Page.groovy:132) - at geb.Browser.doAt(Browser.groovy:335) - at geb.Browser.at(Browser.groovy:259) - at geb.binding.BindingUpdater$InvocationForwarding.doCall(BindingUpdater.groovy:72) - at TechnicalReportSteps$_run_closure2.doCall(TechnicalReportSteps.groovy:25) - at ?.When I select to view "Evaluating Natural Languages System" in resulting technical report list(TechnicalReport.feature:17) -groovy.lang.MissingMethodException: No signature of method: steps.TestDataAndOperations$_compatibleTechTo_closure15.doCall() is applicable for argument types: (rgms.publication.TechnicalReport) values: [NFL Languages System] -Possible solutions: doCall(java.lang.Object, java.lang.Object), call(), call([Ljava.lang.Object;), call(java.lang.Object), call(java.lang.Object, java.lang.Object), findAll() - at steps.TestDataAndOperations.compatibleTechTo(TestDataAndOperations.groovy:331) - at TechnicalReportSteps$_run_closure9.doCall(TechnicalReportSteps.groovy:62) - at ?.Then The technical report "NFL Languages System" is not properly stored by the system(TechnicalReport.feature:24) -| Completed 89 cucumber tests, 29 failed in 173546ms -| Server stopped -| Tests FAILED - view reports in C:\Users\Paola2\Documents\GitHub\workrgms\rgms\target\test-reports \ No newline at end of file diff --git a/out/test/rgms/steps/NewthesisGUI.txt b/out/test/rgms/steps/NewthesisGUI.txt deleted file mode 100644 index eddf3b42..00000000 --- a/out/test/rgms/steps/NewthesisGUI.txt +++ /dev/null @@ -1,711 +0,0 @@ - - - - - - - - - rgms/test/functional/steps/NewthesisGUI.txt at master · macenas/rgms - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - -
-
- - - - - -
- - - - - -
- - -
-
- - - - - -
- - This repository - - -
-
- -
- - -
This repository
-
- -
- - -
All repositories
-
- -
-
-
- - - - - - - - -
- -
- - - - - - - - - - - - -
-
- - - - - - - - -
- -
-
- - -
    - -
  • -
    - -
    - - - - - Unwatch - - - -
    -
    -
    - Notification status - -
    - -
    - -
    - -
    - -

    Not watching

    - You only receive notifications for discussions in which you participate or are @mentioned. - - - Watch - -
    -
    - -
    - -
    - -

    Watching

    - You receive notifications for all discussions in this repository. - - - Unwatch - -
    -
    - -
    - -
    - -

    Ignoring

    - You do not receive any notifications for discussions in this repository. - - - Stop ignoring - -
    -
    - -
    - -
    -
    -
    - -
    -
  • - -
  • - - - -
  • - - -
  • - - Fork - - -
  • - - -
- -

- public - - - /rgms - - - Octocat-spinner-32 - - - - forked from spgroup/rgms - -

-
-
- -
- -
- -
- - - - -
- - - - -
-

HTTPS clone URL

- - - - -
- - - -
-

SSH clone URL

- - - - -
- - - -
-

Subversion checkout URL

- - - - -
- - - -

You can clone with - HTTPS, - SSH, - Subversion, - and other methods. -

- - - - - Clone in Desktop - - - - - Download ZIP - -
-
- -
- - - - - - - - -Show File Finder - -
- - - -
- - - branch: - master - - -
- -
-
- Switch branches/tags - -
- -
-
- -
-
- -
-
- -
- -
- - -
- - master -
-
- -
- -
-

Create branch:

- from ‘master’ -
- - - -
- -
- -
-
- - -
- -
Nothing to show
-
- -
-
-
- - -
- - -
- Fetching contributors… - -
-

Octocat-spinner-32-eaf2f5

-

Cannot retrieve contributors at this time

-
-
- -
-
-
-
- - file - 25 lines (20 sloc) - 1.017 kb -
- - -
-
- - - - - -
- 1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 - - -
@i9n
Feature: Thesis Tests
  As a member of a research group
  I want to add, remove and modify theses I have added

  Scenario: new thesis
    Given The system has no thesis entitled "New thesis"
    When I create the thesis "New thesis" with file name "Newthesis.txt" and school "UFPE"
    Then The thesis "New thesis" is properly stored by the system
    
  Scenario: new thesis duplicated
    Given The thesis "Thesis duplicated" is stored in the system with file name "Thesisduplicated.txt"
    When I create the thesis "Thesis duplicated" with file name "Thesisduplicated2.txt" and school "UFPE"
    Then The thesis "Thesis duplicated" is not stored twice

  Scenario: create thesis web
    Given I am at the create thesis page
    When I fill the thesis details
    Then I am on the thesis show page

  Scenario: create thesis web with partial information
    Given I am at the create thesis page
    When I fill some thesis details
    Then I am still on the create thesis page with the error message
-
-
- -
-
- - - - -
- -
- -
-
- - -
- -
- -
- - -
-
-
- -
-
-
-
-
-
- -
- - - -
- - - Something went wrong with that request. Please try again. -
- - - - - diff --git a/out/test/rgms/steps/Ngs.pdf b/out/test/rgms/steps/Ngs.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/Ngs.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-01.pdf b/out/test/rgms/steps/TCS-01.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-01.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-02.pdf b/out/test/rgms/steps/TCS-02.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-02.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-03.pdf b/out/test/rgms/steps/TCS-03.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-03.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-04.pdf b/out/test/rgms/steps/TCS-04.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-04.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-05.pdf b/out/test/rgms/steps/TCS-05.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-05.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-100.pdf b/out/test/rgms/steps/TCS-100.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-100.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-101.pdf b/out/test/rgms/steps/TCS-101.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-101.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-77.pdf b/out/test/rgms/steps/TCS-77.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-77.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-88.pdf b/out/test/rgms/steps/TCS-88.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-88.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS-99.pdf b/out/test/rgms/steps/TCS-99.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS-99.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TCS.pdf b/out/test/rgms/steps/TCS.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TCS.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TechRepo.pdf b/out/test/rgms/steps/TechRepo.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TechRepo.pdf and /dev/null differ diff --git a/out/test/rgms/steps/TestMax.pdf b/out/test/rgms/steps/TestMax.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/TestMax.pdf and /dev/null differ diff --git a/out/test/rgms/steps/curriculo.xml b/out/test/rgms/steps/curriculo.xml deleted file mode 100644 index 24b3c62e..00000000 --- a/out/test/rgms/steps/curriculo.xml +++ /dev/null @@ -1 +0,0 @@ -Algebraic SemanticsTheorem Proving and AlgebraEngenharia de SoftwareIntrodução a Programação (Orientada a Objetos com Java)Programação Orientada a Objetos (e Java)Trabalho de Graduação em Engenharia de SoftwareEspecificação de Sistemas DistribuídosIntrodução ao RUP--Rational Unified ProcessMétodos Formais (Especificações Algébricas)Novos Conceitos de Modularidade de SoftwareParadigmas de Linguagens de ProgramaçãoProgramação Orientada a Aspectos com AspectJTrabalho Individual em Engenharia de SoftwareProgramação Orientada a Objetos (e Java)Orientação a Objetos com Java e J2ME (dezembro de 2002 e janeiro de 2003, junho e julho de 2003, janeiro e fevereiro de 2004, outubro de 2004, janeiro e fevereiro de 2005, junho e julho de 2005, março de 2006, setembro e outubro de 2006, abril de 200Engenharia de Software (Programa de Capacitação Tecnológica da Motorola)Introdução e Administração de Sistemas UNIX (Extensão para a FISEPE)Orientação a Objetos e Java (InfoCampus, UFPE)Programming, Testing and Distribution with Java (Summer School on Object-Oriented Processes and Technologies) \ No newline at end of file diff --git a/out/test/rgms/steps/curriculo2.xml b/out/test/rgms/steps/curriculo2.xml deleted file mode 100644 index 24b3c62e..00000000 --- a/out/test/rgms/steps/curriculo2.xml +++ /dev/null @@ -1 +0,0 @@ -Algebraic SemanticsTheorem Proving and AlgebraEngenharia de SoftwareIntrodução a Programação (Orientada a Objetos com Java)Programação Orientada a Objetos (e Java)Trabalho de Graduação em Engenharia de SoftwareEspecificação de Sistemas DistribuídosIntrodução ao RUP--Rational Unified ProcessMétodos Formais (Especificações Algébricas)Novos Conceitos de Modularidade de SoftwareParadigmas de Linguagens de ProgramaçãoProgramação Orientada a Aspectos com AspectJTrabalho Individual em Engenharia de SoftwareProgramação Orientada a Objetos (e Java)Orientação a Objetos com Java e J2ME (dezembro de 2002 e janeiro de 2003, junho e julho de 2003, janeiro e fevereiro de 2004, outubro de 2004, janeiro e fevereiro de 2005, junho e julho de 2005, março de 2006, setembro e outubro de 2006, abril de 200Engenharia de Software (Programa de Capacitação Tecnológica da Motorola)Introdução e Administração de Sistemas UNIX (Extensão para a FISEPE)Orientação a Objetos e Java (InfoCampus, UFPE)Programming, Testing and Distribution with Java (Summer School on Object-Oriented Processes and Technologies) \ No newline at end of file diff --git a/out/test/rgms/steps/curriculo3.xml b/out/test/rgms/steps/curriculo3.xml deleted file mode 100644 index 24b3c62e..00000000 --- a/out/test/rgms/steps/curriculo3.xml +++ /dev/null @@ -1 +0,0 @@ -Algebraic SemanticsTheorem Proving and AlgebraEngenharia de SoftwareIntrodução a Programação (Orientada a Objetos com Java)Programação Orientada a Objetos (e Java)Trabalho de Graduação em Engenharia de SoftwareEspecificação de Sistemas DistribuídosIntrodução ao RUP--Rational Unified ProcessMétodos Formais (Especificações Algébricas)Novos Conceitos de Modularidade de SoftwareParadigmas de Linguagens de ProgramaçãoProgramação Orientada a Aspectos com AspectJTrabalho Individual em Engenharia de SoftwareProgramação Orientada a Objetos (e Java)Orientação a Objetos com Java e J2ME (dezembro de 2002 e janeiro de 2003, junho e julho de 2003, janeiro e fevereiro de 2004, outubro de 2004, janeiro e fevereiro de 2005, junho e julho de 2005, março de 2006, setembro e outubro de 2006, abril de 200Engenharia de Software (Programa de Capacitação Tecnológica da Motorola)Introdução e Administração de Sistemas UNIX (Extensão para a FISEPE)Orientação a Objetos e Java (InfoCampus, UFPE)Programming, Testing and Distribution with Java (Summer School on Object-Oriented Processes and Technologies) \ No newline at end of file diff --git a/out/test/rgms/steps/curriculo4.xml b/out/test/rgms/steps/curriculo4.xml deleted file mode 100644 index 24b3c62e..00000000 --- a/out/test/rgms/steps/curriculo4.xml +++ /dev/null @@ -1 +0,0 @@ -Algebraic SemanticsTheorem Proving and AlgebraEngenharia de SoftwareIntrodução a Programação (Orientada a Objetos com Java)Programação Orientada a Objetos (e Java)Trabalho de Graduação em Engenharia de SoftwareEspecificação de Sistemas DistribuídosIntrodução ao RUP--Rational Unified ProcessMétodos Formais (Especificações Algébricas)Novos Conceitos de Modularidade de SoftwareParadigmas de Linguagens de ProgramaçãoProgramação Orientada a Aspectos com AspectJTrabalho Individual em Engenharia de SoftwareProgramação Orientada a Objetos (e Java)Orientação a Objetos com Java e J2ME (dezembro de 2002 e janeiro de 2003, junho e julho de 2003, janeiro e fevereiro de 2004, outubro de 2004, janeiro e fevereiro de 2005, junho e julho de 2005, março de 2006, setembro e outubro de 2006, abril de 200Engenharia de Software (Programa de Capacitação Tecnológica da Motorola)Introdução e Administração de Sistemas UNIX (Extensão para a FISEPE)Orientação a Objetos e Java (InfoCampus, UFPE)Programming, Testing and Distribution with Java (Summer School on Object-Oriented Processes and Technologies) \ No newline at end of file diff --git a/out/test/rgms/steps/curriculo_conferencias.xml b/out/test/rgms/steps/curriculo_conferencias.xml deleted file mode 100644 index 6dddd6af..00000000 --- a/out/test/rgms/steps/curriculo_conferencias.xml +++ /dev/null @@ -1,4434 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - Algebraic Semantics - Theorem Proving and Algebra - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Engenharia de Software - Introdução a Programação (Orientada a Objetos com Java) - Programação Orientada a Objetos (e Java) - Trabalho de Graduação em Engenharia de Software - - - Especificação de Sistemas Distribuídos - Introdução ao RUP--Rational Unified Process - Métodos Formais (Especificações Algébricas) - Novos Conceitos de Modularidade de Software - Paradigmas de Linguagens de Programação - Programação Orientada a Aspectos com AspectJ - Trabalho Individual em Engenharia de Software - - - Programação Orientada a Objetos (e Java) - - - Orientação a Objetos com Java e J2ME (dezembro de 2002 e janeiro de 2003, junho e julho de 2003, janeiro e fevereiro de 2004, outubro de 2004, janeiro e fevereiro de 2005, junho e julho de 2005, março de 2006, setembro e outubro de 2006, abril de 200 - - - Engenharia de Software (Programa de Capacitação Tecnológica da Motorola) - Introdução e Administração de Sistemas UNIX (Extensão para a FISEPE) - Orientação a Objetos e Java (InfoCampus, UFPE) - Programming, Testing and Distribution with Java (Summer School on Object-Oriented Processes and Technologies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/out/test/rgms/steps/curriculo_publications.xml b/out/test/rgms/steps/curriculo_publications.xml deleted file mode 100644 index 6327cdc6..00000000 --- a/out/test/rgms/steps/curriculo_publications.xml +++ /dev/null @@ -1,3568 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - Algebraic Semantics - Theorem Proving and Algebra - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Engenharia de Software - Introdução a Programação (Orientada a Objetos com Java) - Programação Orientada a Objetos (e Java) - Trabalho de Graduação em Engenharia de Software - - - Especificação de Sistemas Distribuídos - Introdução ao RUP--Rational Unified Process - Métodos Formais (Especificações Algébricas) - Novos Conceitos de Modularidade de Software - Paradigmas de Linguagens de Programação - Programação Orientada a Aspectos com AspectJ - Trabalho Individual em Engenharia de Software - - - Programação Orientada a Objetos (e Java) - - - Orientação a Objetos com Java e J2ME (dezembro de 2002 e janeiro de 2003, junho e julho de 2003, janeiro e fevereiro de 2004, outubro de 2004, janeiro e fevereiro de 2005, junho e julho de 2005, março de 2006, setembro e outubro de 2006, abril de 200 - - - Engenharia de Software (Programa de Capacitação Tecnológica da Motorola) - Introdução e Administração de Sistemas UNIX (Extensão para a FISEPE) - Orientação a Objetos e Java (InfoCampus, UFPE) - Programming, Testing and Distribution with Java (Summer School on Object-Oriented Processes and Technologies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/out/test/rgms/steps/tooldelete.pdf b/out/test/rgms/steps/tooldelete.pdf deleted file mode 100644 index 012b3279..00000000 Binary files a/out/test/rgms/steps/tooldelete.pdf and /dev/null differ diff --git a/target/test-reports/html/0_news.html b/target/test-reports/html/0_news.html deleted file mode 100644 index ad2d9193..00000000 --- a/target/test-reports/html/0_news.html +++ /dev/null @@ -1,1914 +0,0 @@ - - - - - Test - news - - - - -
-
- - - -

news

-

Package:

-
- -
-
-
-

news

-

- Executed - 11 - tests - - with - 2 failures - . -

-
-
-
-

-new news -

-

Executed in 0.621 seconds.

-
-
-
-
-
-
-

-delete news -

-

Executed in 0.438 seconds.

-
-
-
-
-
-
-

-new news with existing matching news -

-

Executed in 0.196 seconds.

-
-
-
-
-
-
-

-integrate Twitter account -

-

Executed in 0.222 seconds.

-
-
-
-
-
-
-

-update news from twitter account -

-

Executed in 0.808 seconds.

-
-
-
-

-assert newsByResearchGroup.size() > 0 - | | | - [] 0 false -

-
Assertion failed: 
-
-assert newsByResearchGroup.size() > 0
-       |                   |      |
-       []                  0      false
-
-	at NewsSteps$_run_closure13.doCall(NewsSteps.groovy:99)
-	at ✽.Then news of "SPG" research group has been updated(test\cucumber\news.feature:35)
-
-
-
-
-
-
-
-

-consecutive update without duplicate news -

-

Executed in 0.295 seconds.

-
-
-
-

-assert newsByResearchGroup.size() > 0 - | | | - [] 0 false -

-
Assertion failed: 
-
-assert newsByResearchGroup.size() > 0
-       |                   |      |
-       []                  0      false
-
-	at NewsSteps$_run_closure14.doCall(NewsSteps.groovy:107)
-	at ✽.And twitter account associated with "SPG" research group has been updated once(test\cucumber\news.feature:39)
-
-
-
-
-
-
-
-

-new news web -

-

Executed in 18.143 seconds.

-
-
-
-
-
-
-

-new invalid news (Description blank) -

-

Executed in 0.089 seconds.

-
-
-
-
-
-
-

-edit existing news -

-

Executed in 0.138 seconds.

-
-
-
-
-
-
-

-remove existing news web -

-

Executed in 2.861 seconds.

-
-
-
-
-
-
-

-new invalid news (invalid date) -

-

Executed in 0.087 seconds.

-
-
-
-
- -
-
-
-
- - - - diff --git a/test/cucumber/steps/NewsSteps.groovy b/test/cucumber/steps/NewsSteps.groovy index a7087954..f851afea 100644 --- a/test/cucumber/steps/NewsSteps.groovy +++ b/test/cucumber/steps/NewsSteps.groovy @@ -170,9 +170,9 @@ def selectNovoNoticiasInNewsPage(){ } -Then(~'^I can fill the news details$') {-> +Then(~'^I can fill the news details$') { -> at NewsCreatePage - page.fillNewsDetails() + page.fillNewDetails("essa eh a descricao") } Then(~'^the news with description "([^"]*)", date "([^"]*)" and "([^"]*)" research group is not stored by the system because it is invalid$') { String description, String date, String group -> @@ -210,7 +210,7 @@ When(~'^I select to view new "([^"]*)" in resulting list$') { String title -> to NewsShowPage } -When(~'I select the option to remove in news show page$') {-> +And(~'I select the option to remove in news show page$') {-> to NewsShowPage page.select('input', 'remove') } diff --git a/test/functional/steps/NewsTestDataAndOperations.groovy b/test/functional/steps/NewsTestDataAndOperations.groovy index 8cc6ae33..e3a5c729 100644 --- a/test/functional/steps/NewsTestDataAndOperations.groovy +++ b/test/functional/steps/NewsTestDataAndOperations.groovy @@ -41,7 +41,7 @@ class NewsTestDataAndOperations { def news = News.findByDescriptionAndDateAndResearchGroup(description, date, researchGroup) news.setDescription(newDescription) cont.params << news.properties - cont.update() + cont.update(news.id) cont.response.reset() } @@ -66,12 +66,7 @@ class NewsTestDataAndOperations { else if ( (dia > 30) && (mes == 7) ) { // setembro retorno = false } - else if ( (dia > 30) && (mes == 11) ) { // novembro - retorno = false - } - else { - retorno = true - } + else retorno = !((dia > 30) && (mes == 11)) return retorno }