AssertableJson
A powerful, fluent JSON testing utility for Dart that makes it easy to write expressive and readable assertions for JSON data structures.
Features
- 🔍 Property Validation: Assert presence/absence of keys, nested properties, and values using dot notation
- 📐 Type Checking: Verify types with strong type safety
- 🔢 Numeric Assertions: Compare numbers, check ranges, validate mathematical properties
- 🎯 Pattern Matching: Test values against patterns and custom conditions
- 📦 Schema Validation: Validate JSON structure against expected schemas
- 🎭 Conditional Testing: Execute assertions based on conditions
- 🔄 Chain Operations: Fluent API for chaining multiple assertions
- 🎨 JSON String Testing: Special support for testing JSON string responses
Installation
Add to your pubspec.yaml:
dependencies:
  assertable_json: ^0.2.1
Basic Usage
import 'package:assertable_json/assertable_json.dart';
void main() {
  test('verify user data', () {
    final json = AssertableJson({
      'user': {
        'id': 123,
        'name': 'John Doe',
        'email': 'john@example.com',
        'age': 30,
        'roles': ['admin', 'user']
      }
    });
    // Using callback for nested scope
    json
      .has('user', (user) => user
        .has('id')
        .whereType<int>('id')
        .has('name')
        .whereType<String>('name')
        .has('email')
        .whereContains('email', '@')
        .has('age')
        .isGreaterThan('age', 18)
        .has('roles')
        .count('roles', 2));
        
    // Or using dot notation for direct access
    json
      .has('user.id')
      .whereType<int>('user.id')
      .has('user.name')
      .whereType<String>('user.name')
      .whereContains('user.email', '@')
      .isGreaterThan('user.age', 18)
      .count('user.roles', 2);
  });
}
Key Features in Detail
Property Assertions
json
  .has('name')               // Verify key exists
  .hasNested('user.email')   // Check nested properties
  .hasAll(['id', 'name'])    // Check multiple properties
  .missing('deletedAt');     // Verify key doesn't exist
Dot Notation
Access nested properties directly with dot notation:
json
  .has('user.profile.name')                  // Deep property access
  .where('user.settings.theme', 'dark')      // Check nested values
  .whereType<int>('user.stats.views')        // Type checking
  .isGreaterThan('user.profile.age', 18)     // Numeric validations
  .has('posts.0.id')                         // Array element access
  .whereContains('user.emails.0', '@');      // Pattern matching
Numeric Validations
json
  .isGreaterThan('age', 18)
  .isLessThan('price', 100)
  .isBetween('rating', 1, 5)
  .isDivisibleBy('count', 5)
  .isPositive('score');
Type & Pattern Matching
json
  .whereType<String>('email')
  .whereContains('email', '@')
  .whereIn('status', ['active', 'pending'])
  .where('age', (value) => value >= 18);
Schema Validation
json.matchesSchema({
  'id': int,
  'name': String,
  'email': String,
  'age': int,
  'optional?': String  // Optional field
});
Conditional Testing
json
  .when(isAdmin, (json) {
    json.has('adminPrivileges');
  })
  .unless(isGuest, (json) {
    json.has('personalInfo');
  });
JSON String Testing
When working with JSON string responses:
final response = AssertableJsonString('{"status": "success", "data": {"id": 1}}');
response
  .assertCount(2)
  .assertFragment({'status': 'success'})
  .assertStructure({
    'status': String,
    'data': {
      'id': int
    }
  });
Array Testing
You can test arrays using callback scoping:
json
  .has('items', 3, (items) {
    items.each((item) {
      item
        .has('id')
        .has('name')
        .whereType<bool>('active');
    });
  });
Or with dot notation for direct array element access:
json
  .count('items', 3)
  .has('items.0.id')
  .has('items.1.name')
  .whereType<bool>('items.2.active');
Additional Features
- Dot Notation: Access nested properties directly with simple path syntax
- Property Tracking: Automatically tracks which properties have been tested
- Debugging: Built-in debugging tools with dd()andprintR()
- Custom Assertions: Extend with your own assertion methods
- Type Safety: Full type safety with Dart's static typing
- Fluent API: Chain multiple assertions for cleaner code
- Detailed Errors: Clear error messages for failed assertions
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Libraries
- assertable_json
- A powerful, fluent JSON testing utility for Dart that makes it easy to write expressive and readable assertions for JSON data structures.
- extensions
- Extension methods for enhanced numeric testing capabilities.