-
Notifications
You must be signed in to change notification settings - Fork 34
show field #606
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show field #606
Conversation
Спасибо! Я пока не смотрел на код, но вижу, что я сломал сборку когда внес изменения в настройки трэвиса. Я откатил свой коммит. Можешь обновиться из последнего мастера и заребейзить свою ветку? Извиняюсь :-( |
757a554
to
4b80731
Compare
Generated by 🚫 Danger |
042438c
to
b04c1cc
Compare
@@ -283,7 +283,7 @@ <h3 th:text="${#strings.capitalize(add_series)}"> | |||
</div> | |||
</div> | |||
|
|||
<div class="form-group form-group-sm collapse js-issue-date" th:classappend="|${issueDateHasErrors ? 'has-error in' : ''} ${issueDateHasValues ? 'in' : ''}|"> | |||
<div class="form-group form-group-sm collapse js-issue-date in" th:classappend="|${issueDateHasErrors ? 'has-error in' : ''} ${issueDateHasValues ? 'in' : ''}|"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Перемести, пожалуйста, класс in
поближе к классу collapse
(или даже лучше помести их в конец): class="form-group form-group-sm js-issue-date collapse in"
src/main/javascript/series/add.js
Outdated
@@ -10,6 +10,8 @@ function initPage(suggestCountryUrl) { | |||
return CatalogUtils.expandNumbers(val); | |||
}); | |||
}); | |||
|
|||
$(".collapse").collapse('hide'); | |||
|
|||
$('.collapse').on('show.bs.collapse hide.bs.collapse', function toggleChevron() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А за-chain-ить их нельзя? Типа такого $('.collapse').collapse().on()
?
Еще интересно как оно сейчас работает -- ты скрываешь раньше чем добавляется обработчик на это событие и значит этот обработчик не отрабатывает? Значит стрелочки не будут правильно отображены?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
за-chain-ить не знаю как, остальное проверил и запушил
src/main/javascript/series/add.js
Outdated
@@ -10,6 +10,8 @@ function initPage(suggestCountryUrl) { | |||
return CatalogUtils.expandNumbers(val); | |||
}); | |||
}); | |||
|
|||
$(".collapse").collapse('hide'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если за-chain-ить не удастся, то замени двойные кавычки на одинарные.
Сегодня вспомнил следующее: обрати внимание на th:classappend="|${gibbonsHasErrors ? 'has-error' : } ${showCatalogsInfo ? 'in' : }|" они здесь для того, чтобы не скрывать те поля в которых есть ошибка. Похоже, что эта задача не такая тривиальная и надо внимательно подумать/посмотреть как это исправлять без риска сломать то, что уже работает. |
Пока я склоняюсь к мысли, что с сервера нужно всегда возвращать видимые поля, а на клиенте скрывать, но не все а только те где нет ошибок. |
da72a85
to
011e5ad
Compare
@@ -279,11 +279,11 @@ <h3 th:text="${#strings.capitalize(add_series)}"> | |||
|
|||
<div class="form-group js-collapse-toggle-header"> | |||
<div class="col-sm-offset-3 col-sm-5"> | |||
<span class="glyphicon glyphicon-chevron-right" th:class="${issueDateHasErrors or issueDateHasValues ? 'glyphicon glyphicon-chevron-down' : 'glyphicon glyphicon-chevron-right'}"></span> <a href="javascript:void(0)" id="specify-issue-date-link" data-toggle="collapse" data-target=".js-issue-date" th:text="#{t_specify_issue_date}">Specify date of release</a> | |||
<span class="glyphicon glyphicon-chevron-down" th:class="${issueDateHasErrors or issueDateHasValues ? 'glyphicon glyphicon-chevron-down' : 'glyphicon glyphicon-chevron-right'}"></span> <a href="javascript:void(0)" id="specify-issue-date-link" data-toggle="collapse" data-target=".js-issue-date" th:text="#{t_specify_issue_date}">Specify date of release</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Раз у нас теперь шеврон всегда открыт, то th:class
нам не нужен.
@@ -371,11 +371,11 @@ <h3 th:text="${#strings.capitalize(add_series)}"> | |||
|
|||
<div class="form-group js-collapse-toggle-header"> | |||
<div class="col-sm-offset-3 col-sm-7"> | |||
<span class="glyphicon glyphicon-chevron-right" th:class="${showCatalogsInfo ? 'glyphicon glyphicon-chevron-down' : 'glyphicon glyphicon-chevron-right'}"></span> <a href="javascript:void(0)" id="add-catalog-numbers-link" data-toggle="collapse" data-target=".js-catalogs-info" th:text="#{t_add_catalogs_info}">Add information from stamps catalogues</a> | |||
<span class="glyphicon glyphicon-chevron-down" th:class="${showCatalogsInfo ? 'glyphicon glyphicon-chevron-down' : 'glyphicon glyphicon-chevron-right'}"></span> <a href="javascript:void(0)" id="add-catalog-numbers-link" data-toggle="collapse" data-target=".js-catalogs-info" th:text="#{t_add_catalogs_info}">Add information from stamps catalogues</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Аналогично, нужно убрать th:class
.
@@ -477,11 +477,11 @@ <h3 th:text="${#strings.capitalize(add_series)}"> | |||
|
|||
<div class="form-group js-collapse-toggle-header" sec:authorize="hasAuthority('ADD_COMMENTS_TO_SERIES')"> | |||
<div class="col-sm-offset-3 col-sm-5"> | |||
<span class="glyphicon glyphicon-chevron-right" th:class="${#fields.hasErrors('comment') or addSeriesForm.comment != null ? 'glyphicon glyphicon-chevron-down' : 'glyphicon glyphicon-chevron-right'}"></span> <a href="javascript:void(0)" id="add-comment-link" data-toggle="collapse" data-target=".js-comment" th:text="#{t_add_comment}">Add comment</a> | |||
<span class="glyphicon glyphicon-chevron-down" th:class="${#fields.hasErrors('comment') or addSeriesForm.comment != null ? 'glyphicon glyphicon-chevron-down' : 'glyphicon glyphicon-chevron-right'}"></span> <a href="javascript:void(0)" id="add-comment-link" data-toggle="collapse" data-target=".js-comment" th:text="#{t_add_comment}">Add comment</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Убери th:class
.
Когда исправишь комментарии выше, проверь используется ли еще во вью переменная |
23f11db
to
2b6c5d1
Compare
Вроде все
19 июня 2017 г., 3:00 пользователь Vyacheslav Semushin <
[email protected]> написал:
… Когда исправишь комментарии выше, проверь используется ли еще во вью
переменная showCatalogsInfo, если уже нет, то тоже удали.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAVOKKoaT2hApylVm_phMaTNmZL7Kks5sFZ31gaJpZM4N47Nf>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Проверил -- не просто так раньше была проверка на showCatalogsInfo
-- похоже, что придется ее вернуть.
Как вопроизвести ошибку (при включенном JS):
- открыть страницу
- ввести категорию, количество марок, выбрать изображение
- ввести -1 в любое из полей для каталога Michel
- после этого форма отобразится снова и будет видно только поле для каталога Michel.
Теперь если нажать на "Add information from stamps catalogues", то это поле исчезнет (хотя должны появиться все остальные поля).
Таким образом, когда хотя бы в одном из полей у каталогов есть ошибка -- показывать нужно все поля.
(Пока проверял как работает сайт при отключеном JS -- нашел 2 баги :) ) Итак, поскольку при отключенном JS ссылки "Specify date of release" и прочие не работают, то их нужно скрывать по умолчанию и отображать только при включенном JS. |
src/main/javascript/series/add.js
Outdated
@@ -17,6 +17,8 @@ function initPage(suggestCountryUrl) { | |||
.find('.glyphicon') | |||
.toggleClass('glyphicon-chevron-down glyphicon-chevron-right'); | |||
}); | |||
|
|||
$('.collapse').not(".has-error, .js-has-data").collapse('hide'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To prevent flickering during page load, let's use hide()
here instead of collape()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Все еще не исправлено, к сожалению :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А если заменить collapse на hide, то все ломается... Сходу даже не знаю почему.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ясно -- при замене collapse на hide, не происходит событие и не вызывается один из обработчиков. Давай тогда оставим как есть.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
У меня никакие тесты не падают, так как все быстро происходит.
Я разобрался с hide() -- его действительно нельзя использовать тут, так как collapse работает иначе, не как hide. Collapse не делает невидимым элемент, а изменяет его высоту до 0.
Вот, как я переписал и как вроде бы работает:
- $('.collapse').not('.has-error, .js-has-data').collapse('hide');
+ // emulates collapse('hide') but hides elements faster
+ $('.collapse').not('.has-error, .js-has-data').height(0).removeClass('in').trigger('hide.bs.collapse');
Попробуй у себя, поможет ли это пройти тесты (ну и на трэвисе тоже).
Проверил -- не просто так раньше была проверка на showCatalogsInfo --
похоже, что придется ее вернуть.
Как вопроизвести ошибку (при включенном JS):
- открыть страницу
- ввести категорию, количество марок, выбрать изображение
- ввести -1 в любое из полей для каталога Michel
- после этого форма отобразится снова и будет видно только поле для
каталога Michel.
Теперь если нажать на "Add information from stamps catalogues", то это
поле исчезнет (хотя должны появиться все остальные поля).
Таким образом, когда хотя бы в одном из полей у каталогов есть ошибка --
показывать нужно все поля.
Что-то я даже не знаю как исправить, кроме как костылей нагородить так-как
как я понял в случаи ошибки
$('.collapse').not(".has-error, .js-has-data").collapse('hide');
эта строка скрывает эти пункты
2017-06-22 17:38 GMT+05:00 Vyacheslav Semushin <[email protected]>:
… ***@***.**** commented on this pull request.
------------------------------
In src/main/javascript/series/add.js
<#606 (comment)>:
> @@ -17,6 +17,8 @@ function initPage(suggestCountryUrl) {
.find('.glyphicon')
.toggleClass('glyphicon-chevron-down glyphicon-chevron-right');
});
+
+ $('.collapse').not(".has-error, .js-has-data").collapse('hide');
To prevent flickering during page load, let's use hide() here instead of
collape().
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAfoLuZejqRRDRe_GZwpws5UHbiv-ks5sGmBagaJpZM4N47Nf>
.
|
Итак, поскольку при отключенном JS ссылки "Specify date of release" и
прочие не работают, то их нужно скрывать по умолчанию и отображать только
при включенном JS.
тогда получается то что я делал бесполезно, проще закрыть ветку тогда?
27 июня 2017 г., 22:00 пользователь Евгений Шкарин <[email protected]>
написал:
… Проверил -- не просто так раньше была проверка на showCatalogsInfo --
> похоже, что придется ее вернуть.
> Как вопроизвести ошибку (при включенном JS):
>
> - открыть страницу
>
>
> - ввести категорию, количество марок, выбрать изображение
>
>
> - ввести -1 в любое из полей для каталога Michel
>
>
> - после этого форма отобразится снова и будет видно только поле для
> каталога Michel.
>
> Теперь если нажать на "Add information from stamps catalogues", то это
> поле исчезнет (хотя должны появиться все остальные поля).
> Таким образом, когда хотя бы в одном из полей у каталогов есть ошибка --
> показывать нужно все поля.
Что-то я даже не знаю как исправить, кроме как костылей нагородить так-как
как я понял в случаи ошибки
$('.collapse').not(".has-error, .js-has-data").collapse('hide');
эта строка скрывает эти пункты
2017-06-22 17:38 GMT+05:00 Vyacheslav Semushin ***@***.***>:
> ***@***.**** commented on this pull request.
> ------------------------------
>
> In src/main/javascript/series/add.js
> <#606 (comment)>:
>
> > @@ -17,6 +17,8 @@ function initPage(suggestCountryUrl) {
> .find('.glyphicon')
> .toggleClass('glyphicon-chevron-down glyphicon-chevron-right');
> });
> +
> + $('.collapse').not(".has-error, .js-has-data").collapse('hide');
>
> To prevent flickering during page load, let's use hide() here instead of
> collape().
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#606 (review)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AVJDAfoLuZejqRRDRe_GZwpws5UHbiv-ks5sGmBagaJpZM4N47Nf>
> .
>
|
Нет, просто нужно к ним добавить |
Предлагаю попробовать нагородить :) Силы еще есть или уже все? |
Есть, позже подправлю
8 июля 2017 г., 23:42 пользователь Vyacheslav Semushin <
[email protected]> написал:
… Что-то я даже не знаю как исправить, кроме как костылей нагородить
Предлагаю попробовать нагородить :) Силы еще есть или уже все?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAbTSDA40MjE3-iQgcWwgkMC8dVQKks5sL82ugaJpZM4N47Nf>
.
|
Привет, я вернулся, были очень загружены две недели по работе, такс:
Нет, просто нужно к ним добавить display: none и с помощью JS, отображать
при загрузке страницы.
Я конечно добавлю none, но я честно не понимаю, зачем нужны мои предыдущие
наработки. Давай разберемся. Задача была раскрывать поля "Specify date of
release", "Add information from stamps catalogues" если JS отключен, а
сейчас ты предлагаешь скрывать эти поля, если JS отключен? если да то зачем
предыдущий код? может лучше тогда его откатить?
9 июля 2017 г., 23:12 пользователь Евгений Шкарин <[email protected]>
написал:
… Есть, позже подправлю
8 июля 2017 г., 23:42 пользователь Vyacheslav Semushin <
***@***.***> написал:
Что-то я даже не знаю как исправить, кроме как костылей нагородить
>
> Предлагаю попробовать нагородить :) Силы еще есть или уже все?
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#606 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AVJDAbTSDA40MjE3-iQgcWwgkMC8dVQKks5sL82ugaJpZM4N47Nf>
> .
>
|
Привет! Отлично!!
Ты упустил одну деталь из моего сообщения. Вот оно:
Я имел ввиду не поля, а ссылки, которые до этого использовались, чтобы эти поля раскрывать. Логика простая -- если у пользователя отключен JS и он видит поле, то ссылка на то, чтобы поле скрыть/раскрыть ему ни к чему так как она все равно не будет работать. |
a13e940
to
c0343d8
Compare
Я потестировал, ошибку не обнаружил, посмотри
22 июля 2017 г., 22:52 пользователь Vyacheslav Semushin <
[email protected]> написал:
… Привет, я вернулся
Привет! Отлично!!
Задача была раскрывать поля "Specify date of
release", "Add information from stamps catalogues" если JS отключен, а
сейчас ты предлагаешь скрывать эти поля, если JS отключен?
Ты упустил одну деталь из моего сообщения. Вот оно:
Итак, поскольку при отключенном JS *ссылки* "Specify date of release" и
прочие не работают, то их нужно скрывать по умолчанию и отображать только
при включенном JS.
Я имел ввиду не поля, а ссылки, которые до этого использовались, чтобы эти
поля раскрывать. Логика простая -- если у пользователя отключен JS и он
видит поле, то ссылка на то, чтобы поле скрыть/раскрыть ему ни к чему так
как она все равно не будет работать.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAc908t5wkUpHaRH2BcBvshxnHieNks5sQjb1gaJpZM4N47Nf>
.
|
@@ -82,7 +82,7 @@ | |||
public static final String ADD_SERIES_WITH_COUNTRY_PAGE = "/series/add/country/{slug}"; | |||
|
|||
// MUST be updated when any of our resources were modified | |||
public static final String RESOURCES_VERSION = "v0.3.2"; | |||
public static final String RESOURCES_VERSION = "v0.3.3"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Надо снова обновить версию.
src/main/javascript/series/add.js
Outdated
@@ -10,13 +10,17 @@ function initPage(suggestCountryUrl) { | |||
return CatalogUtils.expandNumbers(val); | |||
}); | |||
}); | |||
|
|||
$(".js-collapse-toggle-header").show(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use single quotes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Подозреваю, что именно из-за этой строчки ничего и не работает -- когда я открываю страницу с отключенным джаваскриптом, то не вижу полей с датой, комментарием и для ввода номеров по каталогам.
src/main/javascript/series/add.js
Outdated
|
||
$('.collapse').on('show.bs.collapse hide.bs.collapse', function toggleChevron() { | ||
$(this) | ||
.prev('.js-collapse-toggle-header') | ||
.find('.glyphicon') | ||
.toggleClass('glyphicon-chevron-down glyphicon-chevron-right'); | ||
}); | ||
|
||
$('.collapse').not(".has-error, .js-has-data").collapse('hide'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use single quotes.
Эмм ... вот я отключаю джаваскрипт http://prntscr.com/g3ygk1
и я все вижу, у тебя не так? или ты про другое?
31 июля 2017 г., 2:09 пользователь Vyacheslav Semushin <
[email protected]> написал:
… ***@***.**** commented on this pull request.
------------------------------
In src/main/javascript/series/add.js
<#606 (comment)>:
> @@ -10,13 +10,17 @@ function initPage(suggestCountryUrl) {
return CatalogUtils.expandNumbers(val);
});
});
+
+ $(".js-collapse-toggle-header").show();
Подозреваю, что именно из-за этой строчки ничего и не работает -- когда я
открываю страницу с отключенным джаваскриптом, то не вижу полей с датой,
комментарием и для ввода номеров по каталогам.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAeElq1liSJ9-IbI9W-qEbNNfTV_5ks5sTPD7gaJpZM4N47Nf>
.
|
Yes, in my case, some fields invisible. Maybe it depends on how you turning off JS? Did you reload a page after that to ensure that changes were applied? |
Ой как странно, конечно я перезагружаю страницу и у меня норм все. Чтобы
точно убедиться, что JS отключен я пытаюсь зайти в ВК и меня информируют об
этом http://prntscr.com/g3yo40
2017-08-03 21:41 GMT+05:00 Vyacheslav Semushin <[email protected]>:
… Эмм ... вот я отключаю джаваскрипт http://prntscr.com/g3ygk1 и я все
вижу, у тебя не так? или ты про другое?
Yes, in my case, some fields invisible. Maybe it depends on how you
turning off JS? Did you reload a page after that to ensure that changes
were applied?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAdJvVGDk1hUYdsdl9wjaugIWJMTGks5sUfgsgaJpZM4N47Nf>
.
|
Пользуюсь хромом и вот как отключаю http://prntscr.com/g3yov2
3 августа 2017 г., 21:36 пользователь Евгений Шкарин <[email protected]
… написал:
Эмм ... вот я отключаю джаваскрипт http://prntscr.com/g3ygk1
и я все вижу, у тебя не так? или ты про другое?
31 июля 2017 г., 2:09 пользователь Vyacheslav Semushin <
***@***.***> написал:
***@***.**** commented on this pull request.
> ------------------------------
>
> In src/main/javascript/series/add.js
> <#606 (comment)>:
>
> > @@ -10,13 +10,17 @@ function initPage(suggestCountryUrl) {
> return CatalogUtils.expandNumbers(val);
> });
> });
> +
> + $(".js-collapse-toggle-header").show();
>
> Подозреваю, что именно из-за этой строчки ничего и не работает -- когда я
> открываю страницу с отключенным джаваскриптом, то не вижу полей с датой,
> комментарием и для ввода номеров по каталогам.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#606 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AVJDAeElq1liSJ9-IbI9W-qEbNNfTV_5ks5sTPD7gaJpZM4N47Nf>
> .
>
|
c0343d8
to
0c5f981
Compare
Сейчас еще раз проверил и не смог воспроизвести, так что ты прав. А как насчет остальных комментариев? |
0c5f981
to
0ae6a98
Compare
Ну вроде все
я тогда возьму за это #573
4 августа 2017 г., 1:11 пользователь Vyacheslav Semushin <
[email protected]> написал:
… Сейчас еще раз проверил и не смог воспроизвести, так что ты прав.
А как насчет остальных комментариев?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAZbxxd_xfncu5SfpqaH0yD33prxOks5sUimFgaJpZM4N47Nf>
.
|
bd7d978
to
d32c422
Compare
Завтра смерджу. Там есть конфликт, так как я в мастере тоже увеличил версию в файле |
@Shkarin I see that tests constantly fail on TravisCI. Did they pass on your laptop? |
Походу нет, не проходят
2017-08-07 16:19 GMT+05:00 Vyacheslav Semushin <[email protected]>:
… @Shkarin <https://github.com/shkarin> I see that tests constantly fail on
TravisCI. Did they pass on your laptop?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDARK_xpOffnrgV1NomFlRxP7cr7FHks5sVvLFgaJpZM4N47Nf>
.
|
d32c422
to
e3692e1
Compare
e3692e1
to
8c7d651
Compare
не могу понять, как исправить чтоб тесты проходили(((
2017-08-20 20:39 GMT+05:00 Coveralls <[email protected]>:
… [image: Coverage Status] <https://coveralls.io/builds/12912328>
Coverage remained the same at 75.055% when pulling *e3692e1
<e3692e1>
on Shkarin:gh565_hidden_field* into *00d021f
<00d021f>
on php-coder:master*.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDAflekmUlplholUAq3kMTNKdugfgAks5saFMVgaJpZM4N47Nf>
.
|
@Shkarin У тебя локально тесты с такими же ошибками падают? |
mvn verify выдает следующие
[INFO] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 03:20 min
[INFO] Finished at: 2017-08-22T21:57:24+05:00
[INFO] Final Memory: 73M/398M
[INFO]
------------------------------------------------------------------------
[ERROR] Failed to execute goal
org.springframework.boot:spring-boot-maven-plugin:1.4.7.RELEASE:start
(start-application) on project mystamps: Spring application did not start
before the configured timeout (30000ms -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
2017-08-22 0:51 GMT+05:00 Vyacheslav Semushin <[email protected]>:
… @Shkarin <https://github.com/shkarin> У тебя локально тесты с такими же
ошибками падают?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDARO9WR4L7zT25mSXA3juA6hMk2g-ks5sad_SgaJpZM4N47Nf>
.
|
Есть ли еще там какие-либо ошибки выше? В частности интересуют логи инициализации спрингового контекста при старте приложения. Запускается ли команда приложение по команде mvn spring-boot:run? Работают ли тесты в мастере? |
mvn spring-boot:run - работает и все запускается.
1) git checkout master выдает следующее (log1)
2) На моей ветке - gh565_hidden_field(log2)
Я полный лог добавил туда.
```
e:\my\projects\mystamps-1>mvn verify
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building My Stamps 0.3-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-banned-dependencies) @ mystamps ---
[INFO]
[INFO] --- minify-maven-plugin:1.7.6:minify (minify-resources) @ mystamps ---
[INFO] Starting CSS task:
[INFO] Skipping the merge step...
[INFO] Creating the minified file [main.min.css].
[INFO] Uncompressed size: 1602 bytes.
[INFO] Compressed size: 778 bytes minified (393 bytes gzipped).
[INFO]
[INFO] Starting JavaScript task:
[INFO] Skipping the merge step...
[INFO] Creating the minified file [add.min.js].
[INFO] Uncompressed size: 1319 bytes.
[INFO] Compressed size: 761 bytes minified (404 bytes gzipped).
[INFO] Creating the minified file [CatalogUtils.min.js].
[INFO] Uncompressed size: 1626 bytes.
[INFO] Compressed size: 703 bytes minified (398 bytes gzipped).
[INFO] Creating the minified file [info.min.js].
[INFO] Uncompressed size: 909 bytes.
[INFO] Compressed size: 527 bytes minified (309 bytes gzipped).
[INFO]
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ mystamps ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 6 resources
[INFO] Copying 60 resources
[INFO] Copying 3 resources to js
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ mystamps ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 220 source files to e:\my\projects\mystamps-1\target\classes
[INFO]
[INFO] --- native2ascii-maven-plugin:1.0-beta-1:native2ascii (default) @ mystamps ---
[INFO] Includes: [**/*.properties]
[INFO] Excludes: []
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\MailTemplates.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\MailTemplates_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\Messages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\Messages_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\SpringSecurityMessages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\SpringSecurityMessages_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\ValidationMessages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\ValidationMessages_ru.properties
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ mystamps ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ mystamps ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- gmavenplus-plugin:1.5:testCompile (default) @ mystamps ---
[INFO] Using Groovy 2.0.8 to perform testCompile.
[INFO] Compiled 211 files.
[INFO]
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ mystamps ---
…-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running ru.mystamps.web.service.CategoryServiceImplTest
2017-08-22 21:56:03.895 INFO --- [ main] r.m.web.service.CategoryServiceImpl : Category #10 has been created (AddCategoryDbDto(name=Example Category, nameRu=????? ?邪蟹?邪?懈? 泻邪?????懈懈))
2017-08-22 21:56:04.002 INFO --- [ main] r.m.web.service.CategoryServiceImpl : Category #40 has been created (AddCategoryDbDto(name=-foo123 test_, nameRu=????? ?邪蟹?邪?懈? 泻邪?????懈懈))
2017-08-22 21:56:04.034 INFO --- [ main] r.m.web.service.CategoryServiceImpl : Category #70 has been created (AddCategoryDbDto(name=Animals, nameRu=?懈??????))
Tests run: 31, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.863 sec - in ru.mystamps.web.service.CategoryServiceImplTest
Running ru.mystamps.web.service.CollectionServiceImplTest
2017-08-22 21:56:04.435 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Collection #100 has been created (AddCollectionDbDto(ownerId=123, slug=test, updatedAt=Tue Aug 22 21:56:04 YEKT 2017))
2017-08-22 21:56:04.450 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Collection #200 has been created (AddCollectionDbDto(ownerId=123, slug=test-user, updatedAt=Tue Aug 22 21:56:04 YEKT 2017))
2017-08-22 21:56:04.471 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Collection #300 has been created (AddCollectionDbDto(ownerId=123, slug=any-login, updatedAt=Tue Aug 22 21:56:04 YEKT 2017))
2017-08-22 21:56:04.510 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Series #456 has been added to collection of user #123
2017-08-22 21:56:04.552 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Series #456 has been removed from collection of user #123
Tests run: 23, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.268 sec - in ru.mystamps.web.service.CollectionServiceImplTest
Running ru.mystamps.web.service.CountryServiceImplTest
2017-08-22 21:56:04.779 INFO --- [ main] r.m.web.service.CountryServiceImpl : Country #10 has been created (AddCountryDbDto(name=Example Country, nameRu=????? ?邪蟹?邪?懈? ???邪??))
2017-08-22 21:56:04.802 INFO --- [ main] r.m.web.service.CountryServiceImpl : Country #40 has been created (AddCountryDbDto(name=-foo123 test_, nameRu=????? ?邪蟹?邪?懈? ???邪??))
2017-08-22 21:56:04.819 INFO --- [ main] r.m.web.service.CountryServiceImpl : Country #80 has been created (AddCountryDbDto(name=Italy, nameRu=ωT娄-ΜΜT))
Tests run: 31, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.179 sec - in ru.mystamps.web.service.CountryServiceImplTest
Running ru.mystamps.web.service.CronServiceImplTest
2017-08-22 21:56:05.326 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Expired activations were not found.
2017-08-22 21:56:05.369 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Expired activations were not found.
2017-08-22 21:56:05.388 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Delete expired activation (key: 1234567890, email: [email protected], created: Tue Aug 22 21:56:05 YEKT 2017)
2017-08-22 21:56:05.391 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Expired activations were not found.
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.464 sec - in ru.mystamps.web.service.CronServiceImplTest
Running ru.mystamps.web.service.DatabaseImagePersistenceStrategyTest
2017-08-22 21:56:05.575 INFO --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: meta data has been saved to #null
2017-08-22 21:56:05.583 INFO --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: preview has been saved
2017-08-22 21:56:05.598 WARN --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: content not found
2017-08-22 21:56:05.602 WARN --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: content not found
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.143 sec - in ru.mystamps.web.service.DatabaseImagePersistenceStrategyTest
Running ru.mystamps.web.service.FilesystemImagePersistenceStrategyTest
2017-08-22 21:56:06.081 INFO --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image data has been written into file \tmp\1.png
2017-08-22 21:56:06.144 INFO --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image data has been written into file \tmp\1.png
2017-08-22 21:56:06.179 INFO --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image data has been written into file \tmp\1.png
2017-08-22 21:56:06.195 WARN --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image #1: content not found (Mock for type 'Path' named 'mockFile' doesn't exist)
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.588 sec - in ru.mystamps.web.service.FilesystemImagePersistenceStrategyTest
Running ru.mystamps.web.service.ImageServiceImplTest
2017-08-22 21:56:06.388 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=JPEG))
2017-08-22 21:56:06.396 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=JPEG))
2017-08-22 21:56:06.401 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=PNG))
2017-08-22 21:56:06.406 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=PNG))
2017-08-22 21:56:06.424 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=1, type=PNG))
2017-08-22 21:56:06.432 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=17, type=PNG))
2017-08-22 21:56:06.576 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Series #14: image #15 was added
Tests run: 29, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.313 sec - in ru.mystamps.web.service.ImageServiceImplTest
Running ru.mystamps.web.service.SeriesSalesServiceImplTest
2017-08-22 21:56:06.835 INFO --- [ main] r.m.web.service.SeriesSalesServiceImpl : Sale for series #777 has been added by user #888
2017-08-22 21:56:06.860 INFO --- [ main] r.m.web.service.SeriesSalesServiceImpl : Sale for series #777 has been added by user #888
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.134 sec - in ru.mystamps.web.service.SeriesSalesServiceImplTest
Running ru.mystamps.web.service.SeriesServiceImplTest
2017-08-22 21:56:07.065 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=456, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.084 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.095 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=1996))
2017-08-22 21:56:07.108 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=6, releaseYear=1996))
2017-08-22 21:56:07.111 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=7, releaseMonth=6, releaseYear=1996))
2017-08-22 21:56:07.115 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.119 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.130 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=1996))
2017-08-22 21:56:07.147 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.163 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.168 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=3, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.182 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=true, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.215 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=17, michelCurrency=EUR, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.218 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.274 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=17, scottCurrency=USD, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.276 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.285 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=17, yvertCurrency=EUR, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.290 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.332 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=17, gibbonsCurrency=GBP, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.335 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.356 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.358 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.361 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.363 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.369 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.375 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #456 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.433 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #456 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.517 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #456 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.539 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #456 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.580 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #456 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.593 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #null has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.610 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=null, quantity=2, perforated=false, michelPrice=null, michelCurrency=null, scottPrice=null, scottCurrency=null, yvertPrice=null, yvertCurrency=null, gibbonsPrice=null, gibbonsCurrency=null, releaseDay=null, releaseMonth=null, releaseYear=null))
2017-08-22 21:56:07.690 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Image #1 has been added to series #123 by user #321
2017-08-22 21:56:07.700 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Image #1 has been added to series #111 by user #222
2017-08-22 21:56:07.715 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Image #456 has been added to series #123 by user #321
Tests run: 99, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.29 sec - in ru.mystamps.web.service.SeriesServiceImplTest
Running ru.mystamps.web.service.SiteServiceImplTest
2017-08-22 21:56:08.704 WARN --- [ main] ru.mystamps.web.service.SiteServiceImpl : Length of value for 'page' field (110) exceeds max field size (100): '/long/url/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
2017-08-22 21:56:08.857 WARN --- [ main] ru.mystamps.web.service.SiteServiceImpl : Length of value for 'method' field (8) exceeds max field size (7): 'PROPFIND'
2017-08-22 21:56:08.905 WARN --- [ main] ru.mystamps.web.service.SiteServiceImpl : Length of value for 'referer_page' field (265) exceeds max field size (255): '/long/url/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
2017-08-22 21:56:08.922 WARN --- [ main] ru.mystamps.web.service.SiteServiceImpl : Length of value for 'user_agent' field (296) exceeds max field size (255): 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
Tests run: 23, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.489 sec - in ru.mystamps.web.service.SiteServiceImplTest
Running ru.mystamps.web.service.StampsCatalogServiceImplTest
2017-08-22 21:56:09.062 INFO --- [ main] r.m.w.service.StampsCatalogServiceImpl : TestCatalog numbers [8] were created
2017-08-22 21:56:09.073 INFO --- [ main] r.m.w.service.StampsCatalogServiceImpl : Series #100: TestCatalog numbers [8, 9] were added
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.064 sec - in ru.mystamps.web.service.StampsCatalogServiceImplTest
Running ru.mystamps.web.service.SuspiciousActivityServiceImplTest
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec - in ru.mystamps.web.service.SuspiciousActivityServiceImplTest
Running ru.mystamps.web.service.TransactionParticipantServiceImplTest
2017-08-22 21:56:09.307 INFO --- [ main] .m.w.s.TransactionParticipantServiceImpl : Participant with name 'test' has been created
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec - in ru.mystamps.web.service.TransactionParticipantServiceImplTest
Running ru.mystamps.web.service.UsersActivationServiceImplTest
2017-08-22 21:56:09.450 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=ifed5jgpud, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.482 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=4rotnwd7xq, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.499 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=gxiqakaq5m, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.500 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=ysfgarvcxq, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.527 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=2xhdwaqdgp, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.543 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=ixcfvutijz, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.546 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=tq7bcf5ojb, [email protected], lang=fr, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.559 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=b1eiq8r0cd, [email protected], lang=en, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.564 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation has been created (AddUsersActivationDbDto(activationKey=0ncdjgv94n, [email protected], lang=fr, createdAt=Tue Aug 22 21:56:09 YEKT 2017))
2017-08-22 21:56:09.627 INFO --- [ main] r.m.w.s.UsersActivationServiceImpl : Users activation '1234567890' has been deleted
Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.258 sec - in ru.mystamps.web.service.UsersActivationServiceImplTest
Running ru.mystamps.web.service.UserServiceImplTest
2017-08-22 21:56:09.778 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.782 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.784 WARN --- [ main] ru.mystamps.web.service.UserServiceImpl : Cannot find registration request for activation key '1234567890'
2017-08-22 21:56:09.792 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.799 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=test, [email protected]))
2017-08-22 21:56:09.807 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=test, [email protected]))
2017-08-22 21:56:09.845 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.860 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.866 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.888 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.913 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.928 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #777 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
2017-08-22 21:56:09.938 INFO --- [ main] ru.mystamps.web.service.UserServiceImpl : User #909 has been created (AddUserDbDto(login=test, role=USER, name=Test Name, [email protected]))
Tests run: 26, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.072 sec - in ru.mystamps.web.service.UserServiceImplTest
Running ru.mystamps.web.util.CatalogUtilsTest
Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.056 sec - in ru.mystamps.web.util.CatalogUtilsTest
Running ru.mystamps.web.util.LocaleUtilsTest
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec - in ru.mystamps.web.util.LocaleUtilsTest
Running ru.mystamps.web.util.PagerTest
Tests run: 40, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec - in ru.mystamps.web.util.PagerTest
Running ru.mystamps.web.util.SlugUtilsTest
Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec - in ru.mystamps.web.util.SlugUtilsTest
Results :
Tests run: 408, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- maven-war-plugin:3.0.0:war (default-war) @ mystamps ---
[INFO] Packaging webapp
[INFO] Assembling webapp [mystamps] in [e:\my\projects\mystamps-1\target\mystamps]
[INFO] Processing war project
[INFO] Copying webapp resources [e:\my\projects\mystamps-1\src\main\webapp]
[INFO] Webapp assembled in [15768 msecs]
[INFO] Building war: e:\my\projects\mystamps-1\target\mystamps.war
[INFO]
[INFO] --- spring-boot-maven-plugin:1.4.7.RELEASE:repackage (default) @ mystamps ---
[INFO]
[INFO] --- spring-boot-maven-plugin:1.4.7.RELEASE:start (start-application) @ mystamps ---
2017-08-22 21:56:53.751 INFO 14592 --- [ootstrap.main()] r.m.w.s.s.boot.ApplicationBootstrap : Starting ApplicationBootstrap on DESKTOP-MTGH4LL with PID 14592 (e:\my\projects\mystamps-1\target\classes started by John in e:\my\projects\mystamps-1)
2017-08-22 21:56:53.764 DEBUG 14592 --- [ootstrap.main()] r.m.w.s.s.boot.ApplicationBootstrap : Running with Spring Boot v1.4.7.RELEASE, Spring v4.3.9.RELEASE
2017-08-22 21:56:53.768 INFO 14592 --- [ootstrap.main()] r.m.w.s.s.boot.ApplicationBootstrap : The following profiles are active: test
2017-08-22 21:56:53.901 INFO 14592 --- [ootstrap.main()] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@56cb27b0: startup date [Tue Aug 22 21:56:53 YEKT 2017]; root of context hierarchy
2017-08-22 21:56:56.074 INFO 14592 --- [ootstrap.main()] o.s.b.f.s.DefaultListableBeanFactory : Overriding bean definition for bean 'requestContextFilter' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=ru.mystamps.web.support.spring.security.SecurityConfig; factoryMethodName=getOrderedRequestContextFilter; initMethodName=null; destroyMethodName=(inferred); defined in ru.mystamps.web.support.spring.security.SecurityConfig] with [Root bean: class [org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=requestContextFilter; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]]
2017-08-22 21:56:57.550 INFO 14592 --- [ootstrap.main()] trationDelegate$BeanPostProcessorChecker : Bean 'ru.mystamps.web.config.TaskExecutorConfig' of type [ru.mystamps.web.config.TaskExecutorConfig$$EnhancerBySpringCGLIB$$57500856] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-08-22 21:56:59.748 INFO 14592 --- [ootstrap.main()] org.eclipse.jetty.util.log : Logging initialized @187340ms
2017-08-22 21:57:00.326 INFO 14592 --- [ootstrap.main()] e.j.JettyEmbeddedServletContainerFactory : Server initialized with port: 8080
2017-08-22 21:57:00.337 INFO 14592 --- [ootstrap.main()] org.eclipse.jetty.server.Server : jetty-9.2.18.v20160721
2017-08-22 21:57:00.417 INFO 14592 --- [ootstrap.main()] application : Initializing Spring embedded WebApplicationContext
2017-08-22 21:57:00.417 INFO 14592 --- [ootstrap.main()] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 6517 ms
2017-08-22 21:57:05.358 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-08-22 21:57:05.668 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-08-22 21:57:05.860 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-08-22 21:57:06.166 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-08-22 21:57:06.294 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'sessionLocaleResolverAwareFilter' to urls: [/account/login]
2017-08-22 21:57:06.383 INFO 14592 --- [ootstrap.main()] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*]
2017-08-22 21:57:06.427 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'TogglzConsole' to [/togglz/*]
2017-08-22 21:57:06.472 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-08-22 21:57:06.478 INFO 14592 --- [ootstrap.main()] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'webServlet' to [/console/*]
2017-08-22 21:57:06.482 INFO 14592 --- [ootstrap.main()] o.e.jetty.server.handler.ContextHandler : Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@2b6200bf{/,[file:/E:/my/projects/mystamps-1/src/main/webapp/, jar:file:/C:/Users/John/.m2/repository/org/webjars/jquery/1.9.1/jquery-1.9.1.jar!/META-INF/resources, jar:file:/C:/Users/John/.m2/repository/org/webjars/bootstrap/3.3.7/bootstrap-3.3.7.jar!/META-INF/resources, jar:file:/C:/Users/John/.m2/repository/org/webjars/selectize.js/0.12.3/selectize.js-0.12.3.jar!/META-INF/resources],AVAILABLE}
2017-08-22 21:57:06.483 INFO 14592 --- [ootstrap.main()] org.eclipse.jetty.server.Server : Started @194083ms
2017-08-22 21:57:09.894 INFO 14592 --- [ootstrap.main()] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: Ant [pattern='/static/**'], []
2017-08-22 21:57:09.895 INFO 14592 --- [ootstrap.main()] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: Ant [pattern='/public/**'], []
2017-08-22 21:57:10.226 INFO 14592 --- [ootstrap.main()] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3250e09e, org.springframework.security.web.context.SecurityContextPersistenceFilter@20fcb68d, org.springframework.security.web.csrf.CsrfFilter@53c5168f, org.springframework.security.web.authentication.logout.LogoutFilter@30c9d9fe, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@4cd5279a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@34411f5, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@69b0bbf0, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1891b957, org.springframework.security.web.session.SessionManagementFilter@1369cf75, org.springframework.security.web.access.ExceptionTranslationFilter@34f6ea29, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7a47d0fb]
2017-08-22 21:57:10.680 INFO 14592 --- [ootstrap.main()] r.m.w.s.DatabaseImagePersistenceStrategy : Images will be saved into in-memory database
2017-08-22 21:57:13.019 INFO 14592 --- [ootstrap.main()] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@56cb27b0: startup date [Tue Aug 22 21:56:53 YEKT 2017]; root of context hierarchy
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 03:20 min
[INFO] Finished at: 2017-08-22T21:57:24+05:00
[INFO] Final Memory: 73M/398M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.4.7.RELEASE:start (start-application) on project mystamps: Spring application did not start before the configured timeout (30000ms -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
e:\my\projects\mystamps-1>
e:\my\projects\mystamps-1>mvn spring-boot:run
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building My Stamps 0.3-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] >>> spring-boot-maven-plugin:1.4.7.RELEASE:run (default-cli) > test-compile @ mystamps >>>
[INFO]
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-banned-dependencies) @ mystamps ---
[INFO]
[INFO] --- minify-maven-plugin:1.7.6:minify (minify-resources) @ mystamps ---
[INFO] Starting CSS task:
[INFO] Skipping the merge step...
[INFO] Creating the minified file [main.min.css].
[INFO] Uncompressed size: 1602 bytes.
[INFO] Compressed size: 778 bytes minified (393 bytes gzipped).
[INFO]
[INFO] Starting JavaScript task:
[INFO] Skipping the merge step...
[INFO] Creating the minified file [add.min.js].
[INFO] Uncompressed size: 1319 bytes.
[INFO] Compressed size: 761 bytes minified (404 bytes gzipped).
[INFO] Creating the minified file [CatalogUtils.min.js].
[INFO] Uncompressed size: 1626 bytes.
[INFO] Compressed size: 703 bytes minified (398 bytes gzipped).
[INFO] Creating the minified file [info.min.js].
[INFO] Uncompressed size: 909 bytes.
[INFO] Compressed size: 527 bytes minified (309 bytes gzipped).
[INFO]
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ mystamps ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 6 resources
[INFO] Copying 60 resources
[INFO] Copying 3 resources to js
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ mystamps ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 220 source files to e:\my\projects\mystamps-1\target\classes
[INFO]
[INFO] --- native2ascii-maven-plugin:1.0-beta-1:native2ascii (default) @ mystamps ---
[INFO] Includes: [**/*.properties]
[INFO] Excludes: []
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\MailTemplates.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\MailTemplates_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\Messages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\Messages_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\SpringSecurityMessages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\SpringSecurityMessages_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\ValidationMessages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\ValidationMessages_ru.properties
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ mystamps ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ mystamps ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- gmavenplus-plugin:1.5:testCompile (default) @ mystamps ---
[INFO] Using Groovy 2.0.8 to perform testCompile.
[INFO] Compiled 211 files.
[INFO]
[INFO] <<< spring-boot-maven-plugin:1.4.7.RELEASE:run (default-cli) < test-compile @ mystamps <<<
[INFO]
[INFO] --- spring-boot-maven-plugin:1.4.7.RELEASE:run (default-cli) @ mystamps ---
2017-08-23 20:52:43.299 INFO 2832 --- [ main] r.m.w.s.s.boot.ApplicationBootstrap : Starting ApplicationBootstrap on DESKTOP-MTGH4LL with PID 2832 (e:\my\projects\mystamps-1\target\classes started by John in e:\my\projects\mystamps-1)
2017-08-23 20:52:43.309 DEBUG 2832 --- [ main] r.m.w.s.s.boot.ApplicationBootstrap : Running with Spring Boot v1.4.7.RELEASE, Spring v4.3.9.RELEASE
2017-08-23 20:52:43.313 INFO 2832 --- [ main] r.m.w.s.s.boot.ApplicationBootstrap : The following profiles are active: test
2017-08-23 20:52:43.393 INFO 2832 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@457fb32d: startup date [Wed Aug 23 20:52:43 YEKT 2017]; root of context hierarchy
2017-08-23 20:52:44.577 INFO 2832 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Overriding bean definition for bean 'requestContextFilter' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=ru.mystamps.web.support.spring.security.SecurityConfig; factoryMethodName=getOrderedRequestContextFilter; initMethodName=null; destroyMethodName=(inferred); defined in ru.mystamps.web.support.spring.security.SecurityConfig] with [Root bean: class [org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=requestContextFilter; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]]
2017-08-23 20:52:45.418 INFO 2832 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'ru.mystamps.web.config.TaskExecutorConfig' of type [ru.mystamps.web.config.TaskExecutorConfig$$EnhancerBySpringCGLIB$$919db4f8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2017-08-23 20:52:46.363 INFO 2832 --- [ main] org.eclipse.jetty.util.log : Logging initialized @82420ms
2017-08-23 20:52:46.543 INFO 2832 --- [ main] e.j.JettyEmbeddedServletContainerFactory : Server initialized with port: 8080
2017-08-23 20:52:46.550 INFO 2832 --- [ main] org.eclipse.jetty.server.Server : jetty-9.2.18.v20160721
2017-08-23 20:52:46.587 INFO 2832 --- [ main] application : Initializing Spring embedded WebApplicationContext
2017-08-23 20:52:46.587 INFO 2832 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3206 ms
2017-08-23 20:52:47.797 INFO 2832 --- [ main] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-08-23 20:52:47.801 INFO 2832 --- [ main] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-08-23 20:52:47.801 INFO 2832 --- [ main] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-08-23 20:52:47.801 INFO 2832 --- [ main] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-08-23 20:52:47.805 INFO 2832 --- [ main] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'sessionLocaleResolverAwareFilter' to urls: [/account/login]
2017-08-23 20:52:47.809 INFO 2832 --- [ main] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*]
2017-08-23 20:52:47.813 INFO 2832 --- [ main] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'TogglzConsole' to [/togglz/*]
2017-08-23 20:52:47.813 INFO 2832 --- [ main] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-08-23 20:52:47.817 INFO 2832 --- [ main] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'webServlet' to [/console/*]
2017-08-23 20:52:47.821 INFO 2832 --- [ main] o.e.jetty.server.handler.ContextHandler : Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@908c0e6{/,[file:/E:/my/projects/mystamps-1/src/main/webapp/, jar:file:/C:/Users/John/.m2/repository/org/webjars/jquery/1.9.1/jquery-1.9.1.jar!/META-INF/resources, jar:file:/C:/Users/John/.m2/repository/org/webjars/bootstrap/3.3.7/bootstrap-3.3.7.jar!/META-INF/resources, jar:file:/C:/Users/John/.m2/repository/org/webjars/selectize.js/0.12.3/selectize.js-0.12.3.jar!/META-INF/resources],AVAILABLE}
2017-08-23 20:52:47.825 INFO 2832 --- [ main] org.eclipse.jetty.server.Server : Started @83885ms
2017-08-23 20:52:49.629 INFO 2832 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: Ant [pattern='/static/**'], []
2017-08-23 20:52:49.630 INFO 2832 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: Ant [pattern='/public/**'], []
2017-08-23 20:52:49.843 INFO 2832 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@a00d311, org.springframework.security.web.context.SecurityContextPersistenceFilter@11a67ecf, org.springframework.security.web.csrf.CsrfFilter@63161173, org.springframework.security.web.authentication.logout.LogoutFilter@f4d954a, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@2ab75e38, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5a8e15f5, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1ed10e0f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7912386, org.springframework.security.web.session.SessionManagementFilter@1dca349e, org.springframework.security.web.access.ExceptionTranslationFilter@39f438ce, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@2df4d638]
2017-08-23 20:52:50.081 INFO 2832 --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Images will be saved into in-memory database
2017-08-23 20:52:51.165 INFO 2832 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@457fb32d: startup date [Wed Aug 23 20:52:43 YEKT 2017]; root of context hierarchy
2017-08-23 20:52:56.236 INFO 2832 --- [ main] s.a.ScheduledAnnotationBeanPostProcessor : No TaskScheduler/ScheduledExecutorService bean found for scheduled processing
2017-08-23 20:52:56.318 INFO 2832 --- [ main] application : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-08-23 20:52:56.321 INFO 2832 --- [ main] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-08-23 20:52:56.344 INFO 2832 --- [ main] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 20 ms
2017-08-23 20:52:56.423 INFO 2832 --- [ main] o.eclipse.jetty.server.ServerConnector : Started ServerConnector@3bb8c98b{HTTP/1.1}{127.0.0.1:8080}
2017-08-23 20:52:56.436 INFO 2832 --- [ main] .s.b.c.e.j.JettyEmbeddedServletContainer : Jetty started on port(s) 8080 (http/1.1)
2017-08-23 20:52:56.444 INFO 2832 --- [ main] r.m.w.s.s.boot.ApplicationBootstrap : Started ApplicationBootstrap in 14.453 seconds (JVM running for 92.506)
2017-08-23 20:56:46.802 INFO 2832 --- [ Thread-11] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@457fb32d: startup date [Wed Aug 23 20:52:43 YEKT 2017]; root of context hierarchy
2017-08-23 20:56:46.871 INFO 2832 --- [ Thread-11] o.eclipse.jetty.server.ServerConnector : Stopped ServerConnector@3bb8c98b{HTTP/1.1}{127.0.0.1:8080}
2017-08-23 20:56:46.886 INFO 2832 --- [ Thread-11] application : Destroying Spring FrameworkServlet 'dispatcherServlet'
2017-08-23 20:56:46.886 INFO 2832 --- [ Thread-11] o.e.jetty.server.handler.ContextHandler : Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@908c0e6{/,[file:/E:/my/projects/mystamps-1/src/main/webapp/, jar:file:/C:/Users/John/.m2/repository/org/webjars/jquery/1.9.1/jquery-1.9.1.jar!/META-INF/resources, jar:file:/C:/Users/John/.m2/repository/org/webjars/bootstrap/3.3.7/bootstrap-3.3.7.jar!/META-INF/resources, jar:file:/C:/Users/John/.m2/repository/org/webjars/selectize.js/0.12.3/selectize.js-0.12.3.jar!/META-INF/resources],UNAVAILABLE}
Terminate batch job (Y/N)? y
e:\my\projects\mystamps-1>mvn verify
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building My Stamps 0.3-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-banned-dependencies) @ mystamps ---
[INFO]
[INFO] --- minify-maven-plugin:1.7.6:minify (minify-resources) @ mystamps ---
[INFO] Starting CSS task:
[INFO] Skipping the merge step...
[INFO] Creating the minified file [main.min.css].
[INFO] Uncompressed size: 1552 bytes.
[INFO] Compressed size: 738 bytes minified (373 bytes gzipped).
[INFO]
[INFO] Starting JavaScript task:
[INFO] Skipping the merge step...
[INFO] Creating the minified file [add.min.js].
[INFO] Uncompressed size: 1206 bytes.
[INFO] Compressed size: 658 bytes minified (375 bytes gzipped).
[INFO] Creating the minified file [CatalogUtils.min.js].
[INFO] Uncompressed size: 1626 bytes.
[INFO] Compressed size: 703 bytes minified (398 bytes gzipped).
[INFO] Creating the minified file [info.min.js].
[INFO] Uncompressed size: 909 bytes.
[INFO] Compressed size: 527 bytes minified (309 bytes gzipped).
[INFO]
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ mystamps ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 6 resources
[INFO] Copying 60 resources
[INFO] Copying 3 resources to js
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ mystamps ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 220 source files to e:\my\projects\mystamps-1\target\classes
[INFO]
[INFO] --- native2ascii-maven-plugin:1.0-beta-1:native2ascii (default) @ mystamps ---
[INFO] Includes: [**/*.properties]
[INFO] Excludes: []
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\MailTemplates.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\MailTemplates_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\Messages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\Messages_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\SpringSecurityMessages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\SpringSecurityMessages_ru.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\ValidationMessages.properties
[INFO] Processing e:\my\projects\mystamps-1\target\classes\ru\mystamps\i18n\ValidationMessages_ru.properties
[INFO]
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ mystamps ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ mystamps ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- gmavenplus-plugin:1.5:testCompile (default) @ mystamps ---
[INFO] Using Groovy 2.0.8 to perform testCompile.
[INFO] Compiled 211 files.
[INFO]
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ mystamps ---
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running ru.mystamps.web.service.CategoryServiceImplTest
2017-08-23 20:57:47.560 INFO --- [ main] r.m.web.service.CategoryServiceImpl : Category #10 has been created (AddCategoryDbDto(name=Example Category, nameRu=????? ?邪蟹?邪?懈? 泻邪?????懈懈))
2017-08-23 20:57:47.640 INFO --- [ main] r.m.web.service.CategoryServiceImpl : Category #40 has been created (AddCategoryDbDto(name=-foo123 test_, nameRu=????? ?邪蟹?邪?懈? 泻邪?????懈懈))
2017-08-23 20:57:47.668 INFO --- [ main] r.m.web.service.CategoryServiceImpl : Category #70 has been created (AddCategoryDbDto(name=Animals, nameRu=?懈??????))
Tests run: 31, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.978 sec - in ru.mystamps.web.service.CategoryServiceImplTest
Running ru.mystamps.web.service.CollectionServiceImplTest
2017-08-23 20:57:47.917 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Collection #100 has been created (AddCollectionDbDto(ownerId=123, slug=test, updatedAt=Wed Aug 23 20:57:47 YEKT 2017))
2017-08-23 20:57:47.935 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Collection #200 has been created (AddCollectionDbDto(ownerId=123, slug=test-user, updatedAt=Wed Aug 23 20:57:47 YEKT 2017))
2017-08-23 20:57:47.951 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Collection #300 has been created (AddCollectionDbDto(ownerId=123, slug=any-login, updatedAt=Wed Aug 23 20:57:47 YEKT 2017))
2017-08-23 20:57:47.974 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Series #456 has been added to collection of user #123
2017-08-23 20:57:47.993 INFO --- [ main] r.m.web.service.CollectionServiceImpl : Series #456 has been removed from collection of user #123
Tests run: 23, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.181 sec - in ru.mystamps.web.service.CollectionServiceImplTest
Running ru.mystamps.web.service.CountryServiceImplTest
2017-08-23 20:57:48.198 INFO --- [ main] r.m.web.service.CountryServiceImpl : Country #10 has been created (AddCountryDbDto(name=Example Country, nameRu=????? ?邪蟹?邪?懈? ???邪??))
2017-08-23 20:57:48.214 INFO --- [ main] r.m.web.service.CountryServiceImpl : Country #40 has been created (AddCountryDbDto(name=-foo123 test_, nameRu=????? ?邪蟹?邪?懈? ???邪??))
2017-08-23 20:57:48.222 INFO --- [ main] r.m.web.service.CountryServiceImpl : Country #80 has been created (AddCountryDbDto(name=Italy, nameRu=ωT娄-ΜΜT))
Tests run: 31, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.132 sec - in ru.mystamps.web.service.CountryServiceImplTest
Running ru.mystamps.web.service.CronServiceImplTest
2017-08-23 20:57:48.594 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Expired activations were not found.
2017-08-23 20:57:48.614 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Expired activations were not found.
2017-08-23 20:57:48.622 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Delete expired activation (key: 1234567890, email: [email protected], created: Wed Aug 23 20:57:48 YEKT 2017)
2017-08-23 20:57:48.633 INFO --- [ main] ru.mystamps.web.service.CronServiceImpl : Expired activations were not found.
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.329 sec - in ru.mystamps.web.service.CronServiceImplTest
Running ru.mystamps.web.service.DatabaseImagePersistenceStrategyTest
2017-08-23 20:57:48.770 INFO --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: meta data has been saved to #null
2017-08-23 20:57:48.779 INFO --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: preview has been saved
2017-08-23 20:57:48.787 WARN --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: content not found
2017-08-23 20:57:48.789 WARN --- [ main] r.m.w.s.DatabaseImagePersistenceStrategy : Image #1: content not found
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.091 sec - in ru.mystamps.web.service.DatabaseImagePersistenceStrategyTest
Running ru.mystamps.web.service.FilesystemImagePersistenceStrategyTest
2017-08-23 20:57:49.089 INFO --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image data has been written into file \tmp\1.png
2017-08-23 20:57:49.108 INFO --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image data has been written into file \tmp\1.png
2017-08-23 20:57:49.121 INFO --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image data has been written into file \tmp\1.png
2017-08-23 20:57:49.129 WARN --- [ main] m.w.s.FilesystemImagePersistenceStrategy : Image #1: content not found (Mock for type 'Path' named 'mockFile' doesn't exist)
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.339 sec - in ru.mystamps.web.service.FilesystemImagePersistenceStrategyTest
Running ru.mystamps.web.service.ImageServiceImplTest
2017-08-23 20:57:49.225 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=JPEG))
2017-08-23 20:57:49.229 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=JPEG))
2017-08-23 20:57:49.229 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=PNG))
2017-08-23 20:57:49.233 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=19, type=PNG))
2017-08-23 20:57:49.245 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=1, type=PNG))
2017-08-23 20:57:49.253 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Image info has been saved to database (ImageInfoDto(id=17, type=PNG))
2017-08-23 20:57:49.341 INFO --- [ main] r.mystamps.web.service.ImageServiceImpl : Series #14: image #15 was added
Tests run: 29, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.184 sec - in ru.mystamps.web.service.ImageServiceImplTest
Running ru.mystamps.web.service.SeriesSalesServiceImplTest
2017-08-23 20:57:49.474 INFO --- [ main] r.m.web.service.SeriesSalesServiceImpl : Sale for series #777 has been added by user #888
2017-08-23 20:57:49.478 INFO --- [ main] r.m.web.service.SeriesSalesServiceImpl : Sale for series #777 has been added by user #888
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.068 sec - in ru.mystamps.web.service.SeriesSalesServiceImplTest
Running ru.mystamps.web.service.SeriesServiceImplTest
2017-08-23 20:57:49.579 INFO --- [ main] r.m.web.service.SeriesServiceImpl : Series #123 has been created (AddSeriesDbDto(categoryId=456, countryId=456, quantity=2, per
|
8c7d651
to
cd54a7b
Compare
cd54a7b
to
9a614ac
Compare
Ура! Тесты в Трэвисе прошли! У тебя они тоже падать перестали? |
Эх не знаю но у меня mvn verify выдает ошибку
[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 06:32 min
[INFO] Finished at: 2017-08-27T23:01:01+05:00
[INFO] Final Memory: 141M/920M
[INFO]
------------------------------------------------------------------------
[ERROR] Failed to execute goal
org.robotframework:robotframework-maven-plugin:1.4.7:run (default) on
project mystamps: 4 critical test cases failed. Check the logs for details.
-> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
2017-08-27 23:01:02.727 INFO 7640 --- [ Thread-14]
ationConfigEmbeddedWebApplicationContext : Closing
org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@320dcc84:
startup date [Sun Aug 27 22:56:04 YEKT 2017]; root of context hierarchy
2017-08-27 23:01:02.747 INFO 7640 --- [ Thread-14]
o.eclipse.jetty.server.ServerConnector : Stopped ServerConnector@715c475
{HTTP/1.1}{127.0.0.1:8080}
2017-08-27 23:01:02.747 INFO 7640 --- [ Thread-14] application
: Destroying Spring FrameworkServlet
'dispatcherServlet'
2017-08-27 23:01:02.751 INFO 7640 --- [ Thread-14]
o.e.jetty.server.handler.ContextHandler : Stopped
o.s.b.c.e.j.JettyEmbeddedWebAppContext@2868018e{/,[file:/E:/my/projects/mystamps-1/src/main/webapp/,
jar:file:/C:/Users/John/.m2/repository/org/webjars/jquery/1.9.1/jquery-1.9.1.jar!/META-INF/resources,
jar:file:/C:/Users/John/.m2/repository/org/webjars/bootstrap/3.3.7/bootstrap-3.3.7.jar!/META-INF/resources,
jar:file:/C:/Users/John/.m2/repository/org/webjars/selectize.js/0.12.3/selectize.js-0.12.3.jar!/META-INF/resources],UNAVAILABLE}
Ну раз бот не выдает ошибку, то наверное это глюк на винде
2017-08-24 23:57 GMT+05:00 Vyacheslav Semushin <[email protected]>:
… Ура! Тесты в Трэвисе прошли! У тебя они тоже падать перестали?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#606 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVJDARe2H0sM1smexvUDqajI7_n7nEaIks5sbceSgaJpZM4N47Nf>
.
|
Сами ошибки были где-то выше, а это лишь результат выполнения команды. |
Merged in 4844a35 commit. Thank you! |
Addressed to #565