Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

TEMPLATE-14: Рефакторинг #22

Merged
merged 1 commit into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Table;

import java.time.LocalDateTime;
import java.util.LinkedHashSet;
import java.util.Set;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ CREATE TABLE IF NOT EXISTS templates
name VARCHAR(255) NOT NULL UNIQUE,
description TEXT,
parameters JSONB,
created_at TIMESTAMPTZ NOT NULL,
updated_at TIMESTAMPTZ NOT NULL
created_at TIMESTAMPTZ NOT NULL,
updated_at TIMESTAMPTZ NOT NULL
);

COMMENT ON TABLE templates IS 'Шаблоны';
Expand Down
58 changes: 29 additions & 29 deletions src/main/resources/lang/messages.properties
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
validation.template.name.not-null=Template name must be not null.
validation.template.name.length=Template name length must be between 1 and 255.
validation.template.code.not-null=Template code must be not null.
validation.template.code.pattern=Template code must consist of lowercase Latin letters, numbers and underscores.
validation.template.code.length=Template code length must be between 1 and 255.
validation.parameter.name.not-null=Parameter name must be not null.
validation.parameter.value.not-null=Parameter value must be not null.
exception.validation-error=Validation error:
exception.endpoint-not-found=Endpoint not found.
exception.method-not-supported=Method not supported.
exception.missing-request-parameter=Missing request parameter.
exception.unsupported-media-type=Unsupported media type.
exception.invalid-json-format=Invalid JSON format.
exception.internal-server-error=Internal server error.
exception.template-name-already-exists=Template name already exists.
exception.template-code-already-exists=Template code already exists.
exception.template-not-found=Template not found.
exception.access-denied=Access denied.
exception.invalid-zip-format=Invalid ZIP format:
exception.invalid-zip-format.there-is-directory=Archive must not contain directories.
exception.invalid-zip-format.not-zip-archive=Not ZIP archive.
exception.invalid-zip-format.too-many-files=Too many files.
exception.invalid-zip-format.too-few-files=Too few files.
exception.invalid-zip-format.invalid-file-extension=Invalid file extension.
exception.invalid-template-config-format=Invalid template configuration format.
exception.invalid-template-arguments=Invalid template arguments:
exception.invalid-template-arguments.duplicate-argument=Arguments are duplicated.
exception.invalid-template-arguments.missing-required-argument=Missing required argument.
exception.invalid-template-arguments.extra-argument=Extra argument passed.
validation.template.name.not-null=Имя шаблона не должно быть пустым.
validation.template.name.length=Длина имени шаблона должна быть от 1 до 255 символов.
validation.template.code.not-null=Код шаблона не должен быть пустым.
validation.template.code.pattern=Код шаблона должен состоять из строчных латинских букв, цифр и подчеркиваний.
validation.template.code.length=Длина кода шаблона должна быть от 1 до 255 символов.
validation.parameter.name.not-null=Имя параметра не должно быть пустым.
validation.parameter.value.not-null=Значение параметра не должно быть пустым.
exception.validation-error=Ошибка валидации:
exception.endpoint-not-found=Конечная точка не найдена.
exception.method-not-supported=Метод не поддерживается.
exception.missing-request-parameter=Отсутствует параметр запроса.
exception.unsupported-media-type=Неподдерживаемый тип медиа.
exception.invalid-json-format=Неверный формат JSON.
exception.internal-server-error=Внутренняя ошибка сервера.
exception.template-name-already-exists=Имя шаблона уже существует.
exception.template-code-already-exists=Код шаблона уже существует.
exception.template-not-found=Шаблон не найден.
exception.access-denied=Доступ запрещен.
exception.invalid-zip-format=Неверный формат ZIP-архива:
exception.invalid-zip-format.there-is-directory=Архив не должен содержать каталоги.
exception.invalid-zip-format.not-zip-archive=Не является ZIP-архивом.
exception.invalid-zip-format.too-many-files=Слишком много файлов.
exception.invalid-zip-format.too-few-files=Слишком мало файлов.
exception.invalid-zip-format.invalid-file-extension=Неверное расширение файла.
exception.invalid-template-config-format=Неверный формат конфигурации шаблона.
exception.invalid-template-arguments=Неверные аргументы шаблона:
exception.invalid-template-arguments.duplicate-argument=Дублирование аргументов.
exception.invalid-template-arguments.missing-required-argument=Отсутствует обязательный аргумент.
exception.invalid-template-arguments.extra-argument=Передан лишний аргумент.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public void renderTemplate_whenTemplateConfigNotExists_thenThrownTemplateNotFoun

@Test
public void
renderTemplate_whenTemplateConfigExistsAndTemplateFileNotFound_thenThrownTemplateNotFoundException() {
renderTemplate_whenTemplateConfigExistsAndTemplateFileNotFound_thenThrownTemplateNotFoundException() {
// Prepare
final var code = "code";
final var renderDto = RenderDto.builder().code(code).build();
Expand All @@ -404,7 +404,7 @@ public void renderTemplate_whenTemplateConfigNotExists_thenThrownTemplateNotFoun

// Do
assertThatExceptionOfType(TemplateNotFoundException.class)
.isThrownBy(() -> templateService.renderTemplate(renderDto));
.isThrownBy(() -> templateService.renderTemplate(renderDto));

// Check
verify(templateRepository, times(1)).findByCode(code);
Expand Down
Loading