Fixtures.
Project description
Fixtures
A dual repository (JavaScript and Python) containing basic utils for development.
Minimum external dependencies should be used in order to keep the repository lightweight.
1. Overview
This repository contains the fixtures for the common applications, formats, databases that contain data.
2. Usage
2.1. Python
See example test.
The files can be directly accessed through the filesystem, otherwise the content can be extracted by (a shortened) reference ("object path") from the top-level manifest.yml.
from mat3ra.fixtures import get_content_by_reference_path
PATH_IN_MANIFEST = "applications/espresso/v5.4.0/stdin"
content = get_content_by_reference_path(PATH_IN_MANIFEST)
print(content)
2.2. JavaScript/TypeScript
This package can be installed via npm:
npm install @mat3ra/fixtures
The package exports utilities to access the data folder. Only server-side (Node.js) runtime is supported due to having to rely on the filesystem.
Getting the Data Folder Path
You can access the data folder path in several ways:
TypeScript/ES6 Modules:
import { getDataPath, DATA_PATH } from '@mat3ra/fixtures';
import * as fs from 'fs';
import * as path from 'path';
// Using the function
const dataPath = getDataPath();
// Using the constant
const manifestPath = path.join(DATA_PATH, 'applications/espresso/5.4.0/manifest.yml');
const manifest = fs.readFileSync(manifestPath, 'utf-8');
// Using default export
import dataPath from '@mat3ra/fixtures';
const filePath = path.join(dataPath, 'applications/espresso/5.4.0/case-001/pw-scf.in');
CommonJS:
const { getDataPath, DATA_PATH } = require('@mat3ra/fixtures');
const fs = require('fs');
const path = require('path');
// Using the function
const dataPath = getDataPath();
// Using the constant
const manifestPath = path.join(DATA_PATH, 'applications/espresso/5.4.0/manifest.yml');
const manifest = fs.readFileSync(manifestPath, 'utf-8');
Direct Data Folder Access
You can also access the data folder directly using the package exports:
// Access specific files in the data folder
import '@mat3ra/fixtures/data/applications/espresso/5.4.0/manifest.yml';
Utility Functions
The package provides utility functions for common operations:
import {
readFileFromFixtures,
getRenderedTemplateFile,
getTemplateContexts,
} from '@mat3ra/fixtures';
// Read any file from the data folder
const manifest = readFileFromFixtures('applications/espresso/5.4.0/manifest.yml');
// Get a rendered template file (with normalized line endings)
const template = getRenderedTemplateFile('default', 'pw_scf');
console.log(template.name); // 'pw_scf.j2.in'
console.log(template.content); // Template content
// Get all template contexts
const contexts = getTemplateContexts();
// Returns: [{ name: 'default', context: {...} }, { name: 'constrained', context: {...} }]
Example: Reading a File from the Data Folder
import { DATA_PATH } from '@mat3ra/fixtures';
import * as fs from 'fs';
import * as path from 'path';
// Read a manifest file
const manifestPath = path.join(
DATA_PATH,
'applications/espresso/5.4.0/manifest.yml'
);
const manifest = fs.readFileSync(manifestPath, 'utf-8');
// Read an input file
const inputPath = path.join(
DATA_PATH,
'applications/espresso/5.4.0/case-001/pw-scf.in'
);
const inputContent = fs.readFileSync(inputPath, 'utf-8');
3. Development
3.1. Folder Structure
Here's the folder structure of the repository:
data
├── applications
│ └── espresso
│ └── 5.4.0
│ ├── case-001
│ ├── case-002
│ ├── case-003
│ └── manifest.yml
├── db
└── formats
For each version of the application, there are multiple cases. Each case contains the data that is used for testing. The manifest file is a YAML file that contains the metadata about all the cases.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mat3ra_fixtures-2026.5.5.post0.tar.gz.
File metadata
- Download URL: mat3ra_fixtures-2026.5.5.post0.tar.gz
- Upload date:
- Size: 9.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/9.0.0 pkginfo/1.12.1.2 requests/2.33.1 requests-toolbelt/1.0.0 tqdm/4.67.3 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aaebc0bc8b3ef8ed71d8a62a31e92f4ee634a785f1c1d875afbb5a2eb9287f29
|
|
| MD5 |
f673f6d7dab424fe725f14ad485143e3
|
|
| BLAKE2b-256 |
1e41fc572459fd522349b28095f346f9490c5606f0666bb8c327c620a8945abd
|
File details
Details for the file mat3ra_fixtures-2026.5.5.post0-py3-none-any.whl.
File metadata
- Download URL: mat3ra_fixtures-2026.5.5.post0-py3-none-any.whl
- Upload date:
- Size: 4.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/9.0.0 pkginfo/1.12.1.2 requests/2.33.1 requests-toolbelt/1.0.0 tqdm/4.67.3 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a32ea3bf8ef382ea0b2049211ff559c518d56c6fe318a0ffbeb8f01b8d8d6884
|
|
| MD5 |
944f51cce485e67646f425efc6d47abf
|
|
| BLAKE2b-256 |
68fdf994ef4c1e02356127951bf409c27a85ad677728ed30e2bf02d0ba3e54c0
|