testing

testing is a cursor rule for Cursor from inventwo/ioBroker.life360ng. It costs 0 tokens per session (535 once invoked), scanned A, original, MIT.

Project rules for testing an ioBroker adapter with the @iobroker/testing package and Mocha, a JavaScript test framework.

In plain words
What is it for?
Use them to run unit, package, and integration tests, configure the test harness, start an adapter, and verify its objects and states.
Why use it?
They keep unit and integration tests consistent with the project's required tools and commands.

Cursor rule for Cursor

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/inventwo/iobroker.life360ng/testing
Clone the repo
git clone --depth 1 https://github.com/inventwo/ioBroker.life360ng

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for testing

README.md
[![agentmods](https://agentmods.dev/badge/rules/inventwo/iobroker.life360ng/testing.svg)](https://agentmods.dev/rules/inventwo/iobroker.life360ng/testing)
Your own site
<a href="https://agentmods.dev/rules/inventwo/iobroker.life360ng/testing"><img src="https://agentmods.dev/badge/rules/inventwo/iobroker.life360ng/testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 535 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.00535
Opus 5 $0.00000 $0.00267
Sonnet 5 $0.00000 $0.00107
Haiku 4.5 $0.00000 $0.00053

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

Security

Grade A, and why

testing 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 4d 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.

.cursor/rules/testing.mdc · 73 lines

How it starts

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

Testing

Use only @iobroker/testing for integration tests — https://github.com/ioBroker/testing

Unit tests use Mocha (not Jest).

Scripts

  • npm run test — unit (test:js) + package validation (CI default)
  • npm run test:js — Mocha unit tests (*.test.js, test/**)
  • npm run test:package — validates package.json, io-package.json, admin JSON
  • npm run test:integration — integration tests via dev-server

Integration test pattern

const path = require("node:path");
const { tests } = require("@iobroker/testing");

tests.integration(path.join(__dirname, ".."), {
  defineAdditionalTests({ suite }) {
    suite("Test adapter with specific configuration", (getHarness) => {
      let harness;
      before(() => { harness = getHarness(); });

      it("should configure and start adapter", function () {
        return new Promise(async (resolve, reject) => {
          // configure via harness.objects.setObject()
          // start via harness.startAdapterAndWait()
          // verify via harness.states.getState() / getStateIDs()
        });
      }).timeout(40000);
    });
  }
});

Rules

  • Configure via harness.objects.setObject() before start
  • Start via harness.startAdapterAndWait()
  • Verify via harness.states.getState() / getStateIDs()
  • Plan sufficient timeouts for async operations
  • Mock external APIs in unit tests; never bypass the harness
  • Never test Life360 API URLs directly in integration tests

API credential tests

For adapters with external API auth, encrypt secrets for harness config:

async function encryptPassword(harness, password) {
  const systemConfig = await harness.objects.getObjectAsync("system.config");
  const secret = systemConfig?.native?.secret;
  if (!secret) throw new Error("Could not retrieve system secret");
  let result = "";
  for (let i = 0; i < password.length; ++i) {
    result += String.fromCharCode(secret[i % secret.length].charCodeAt(0) ^ password.charCodeAt(i));
  }
  return result;
}

Read the full file on GitHub · 73 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. 4d ago First seen · 73 lines · 0 tokens per session scan A 6441b396c75b

Subscribe to this mod's changes

testing is a cursor rule published in the GitHub repository inventwo/ioBroker.life360ng (4 stars, last pushed 10d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 535 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-31.