testing-patterns

A set of rules and examples for testing 1C code with YaXUnit and Vanessa Automation. YaXUnit is used for unit tests of individual functions, while Vanessa Automation describes user scenarios as “given, when, then” steps.

In plain words
What is it for?
Use it when writing unit tests for 1C functions or behavior-driven tests for complete user scenarios, such as existing objects, missing objects, invalid parameters, and boundary conditions.
Why use it?
It gives tests a consistent structure and naming style, making expected results and common edge cases easier to check.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/desko77/cursor-1c-skills/testing-patterns
Clone the repo
git clone --depth 1 https://github.com/Desko77/cursor-1c-skills
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 885 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00885
Opus 5 $0.00000 $0.00443
Sonnet 5 $0.00000 $0.00177
Haiku 4.5 $0.00000 $0.00089

Measured 2d ago against content hash 42098ac46f27, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

testing-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

rules/testing-patterns.mdc · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

1C Testing Patterns

Шаблоны и подходы к тестированию кода 1С.

Применяется: при написании тестов для кода 1С.


YaXUnit - юнит-тесты

Шаблон теста

Процедура Тест<ИмяФункции>_<Сценарий>() Экспорт
    // Arrange
    <подготовка данных>

    // Act
    Результат = <вызов тестируемой функции>;

    // Assert
    ЮТест.ОжидаетЧто(Результат).<проверка>;
КонецПроцедуры

Пример

Процедура ТестПолучениеДанныхКлиента_СуществующийКлиент() Экспорт
    // Arrange
    Клиент = Справочники.Клиенты.СоздатьЭлемент();
    Клиент.Наименование = "Тест";
    Клиент.Записать();

    // Act
    Данные = ПолучитьДанныеКлиента(Клиент.Ссылка);

    // Assert
    ЮТест.ОжидаетЧто(Данные).Свойство("Наименование").Равно("Тест");
КонецПроцедуры

Именование тестов

  • Тест<Функция>_<Сценарий> - основной формат
  • Сценарии: СуществующийОбъект, НесуществующийОбъект, НеверныйПараметр, ПустоеЗначение, ГраничноеУсловие

Vanessa Automation - BDD-тесты

Шаблон сценария

Функционал: <Название функциональности>

Сценарий: <Описание сценария>
    Дано <начальное состояние>
    Когда <действие пользователя>
    Тогда <ожидаемый результат>

Пример

Функционал: Создание заказа клиента

Сценарий: Создание нового заказа
    Дано Я авторизован как "Менеджер"
    И Существует клиент "ООО Тест"
    Когда Я открываю форму создания документа "ЗаказКлиента"
    И Я выбираю клиента "ООО Тест"
    И Я добавляю товар "Товар1" с количеством "10"
    И Я нажимаю "Провести"
    Тогда Документ "ЗаказКлиента" проведен
    И Остатки товара "Товар1" уменьшились на "10"

Типы тест-кейсов

Для каждой тестируемой функции генерировать:

  1. Happy path - нормальный сценарий, корректные данные
  2. Edge cases - граничные условия (пустая строка, 0, максимальное значение)
  3. Error cases - невалидные данные, несуществующие ссылки
  4. Boundary conditions - NULL, Неопределено, пустые коллекции

Цели покрытия

Область Цель
Экспортные функции (public API) 100%
Бизнес-логика (расчеты, валидация) 90%
Утилитарные функции 80%
Обработчики UI 70%
Общее покрытие 80%

Read the full file on GitHub · 116 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 116 lines · 0 tokens per session scan A 42098ac46f27

Subscribe to this mod's changes

testing-patterns is a cursor rule published in the GitHub repository Desko77/cursor-1c-skills (53 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 885 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.