<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: madmeme</title>
    <description>The latest articles on DEV Community by madmeme (@qitops).</description>
    <link>https://dev.to/qitops</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3146651%2F8fb31086-20d0-4e79-91ad-936efc068df8.png</url>
      <title>DEV Community: madmeme</title>
      <link>https://dev.to/qitops</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/qitops"/>
    <language>en</language>
    <item>
      <title>Introducing QitOps: A Unified CLI for API, Performance, and Security Testing</title>
      <dc:creator>madmeme</dc:creator>
      <pubDate>Sat, 10 May 2025 10:58:23 +0000</pubDate>
      <link>https://dev.to/qitops/introducing-qitops-a-unified-cli-for-api-performance-and-security-testing-pal</link>
      <guid>https://dev.to/qitops/introducing-qitops-a-unified-cli-for-api-performance-and-security-testing-pal</guid>
      <description>&lt;h2&gt;
  
  
  What is QitOps?
&lt;/h2&gt;

&lt;p&gt;QitOps is a command-line tool for software testing — built to unify API, performance, security, and web testing workflows into a single, Rust-powered CLI.&lt;/p&gt;

&lt;p&gt;If you've ever juggled Postman collections, k6 scripts, custom curl chains, or browser test wrappers, QitOps is meant to replace that chaos with a clean, structured, extensible CLI.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Built It
&lt;/h2&gt;

&lt;p&gt;As someone who’s worked in QA and dev automation for nearly two decades, I’ve seen the testing ecosystem get increasingly fragmented.&lt;/p&gt;

&lt;p&gt;We use one tool for APIs, another for performance, yet another for security... then we stitch them together with shell scripts and cross our fingers.&lt;/p&gt;

&lt;p&gt;I wanted a tool that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Runs everywhere (local, CI, offline)&lt;/li&gt;
&lt;li&gt;Has zero GUI dependency&lt;/li&gt;
&lt;li&gt;Uses JSON/YAML for clean, repeatable test configs&lt;/li&gt;
&lt;li&gt;Works for QA engineers and DevOps pipelines alike&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;API Testing&lt;/strong&gt; — with support for retries, validation, chaining, and test collections
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Performance Testing&lt;/strong&gt; — ramping load profiles, thresholds, detailed response metrics
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security Scanning&lt;/strong&gt; — headers, tokens, basic vulnerability detection
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Testing&lt;/strong&gt; — headless browser checks (Playwright/Chromium)
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data-Driven Tests&lt;/strong&gt; — run with CSV or JSON data sets
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CI-Friendly Output&lt;/strong&gt; — generate structured reports (JSON, HTML, XML, CSV)
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All CLI, no fluff.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quick Example
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Run a simple API test&lt;/span&gt;
qitops api &lt;span class="nt"&gt;-c&lt;/span&gt; tests/configs/login.json

&lt;span class="c"&gt;# Run a collection of chained API requests&lt;/span&gt;
qitops collection &lt;span class="nt"&gt;-c&lt;/span&gt; tests/configs/api_collection.json

&lt;span class="c"&gt;# Run a performance test with 50 users for 2 minutes&lt;/span&gt;
qitops performance &lt;span class="nt"&gt;-c&lt;/span&gt; tests/configs/perf.json &lt;span class="nt"&gt;-u&lt;/span&gt; 50 &lt;span class="nt"&gt;-d&lt;/span&gt; 120

&lt;span class="c"&gt;# Run in CI mode with JSON output&lt;/span&gt;
qitops &lt;span class="nt"&gt;--ci-mode&lt;/span&gt; &lt;span class="nt"&gt;-r&lt;/span&gt; json &lt;span class="nt"&gt;-o&lt;/span&gt; results.json api &lt;span class="nt"&gt;-c&lt;/span&gt; tests/configs/api.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;You can build from source, install with Cargo, or run via Docker:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Rust + Cargo&lt;/span&gt;
cargo &lt;span class="nb"&gt;install &lt;/span&gt;qitops

&lt;span class="c"&gt;# Docker&lt;/span&gt;
docker run &lt;span class="nt"&gt;--rm&lt;/span&gt; qitops/qitops api &lt;span class="nt"&gt;-c&lt;/span&gt; test.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Looking Ahead
&lt;/h2&gt;

&lt;p&gt;The CLI is just the start — I'm currently working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A plugin system for custom test runners
&lt;/li&gt;
&lt;li&gt;AI-based test generation (offline/local LLMs supported)
&lt;/li&gt;
&lt;li&gt;Optional TUI/dashboard interface
&lt;/li&gt;
&lt;li&gt;Community-driven test libraries
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’d love to hear what features you would want.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;Source:&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/qitops/qitops-cli-tools" rel="noopener noreferrer"&gt;https://github.com/qitops/qitops-cli-tools&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;MIT licensed, contributions welcome.&lt;/p&gt;

&lt;p&gt;Let me know if you test it, spot something weird, or have ideas to improve it. I built this for the QA/dev community — and now I want to build it with you.&lt;/p&gt;

</description>
      <category>testing</category>
      <category>webdev</category>
      <category>devops</category>
      <category>rust</category>
    </item>
  </channel>
</rss>
