Sower "plants" directories, files and symlinks on your filesystem based on a contract you tell it.
Project description
.. image:: https://raw.githubusercontent.com/aeroxis/sower/master/img/sower-logo.png
:alt: Sultan logo
:align: right
:width: 300px
:scale: 50%
.. image:: https://badge.fury.io/py/sower.png
:target: https://badge.fury.io/py/sower
.. image:: https://travis-ci.org/aeroxis/sower.svg?branch=master
:target: https://travis-ci.org/aeroxis/sower
.. image:: http://img.shields.io/:license-mit-blue.svg
:alt: MIT License
:target: http://doge.mit-license.org
Sower
=====
**Sower "plants" directories, files and symlinks on your filesystem based on a contract you tell it.**
How to Install
--------------
.. code:: bash
$ pip install sower
Why Do You Need Sower?
======================
The Problem
-----------
Have you ever been in a situation where you needed to create a large set of
files, that may span multiple subdirectories? You might need to do this for
testing, especially if your application that you're testing is supposed to
be tested for how it manages a set of files based on their directory
structure.
The Solution - Part 1
---------------------
Sower is the solution for this problem! You simply define a *contract* in
YAML or JSON like the following:
+---------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+
| YAML (sower-contract.yml) + JSON (sower-contract.json) +
+=======================================================================================+===============================================================================================+
| | |
| .. code:: | .. code:: |
| | |
| --- | { |
| sower: | "sower": { |
| plan: | "plan": { |
| bin: | "bin": { |
| start.sh: | "start.sh": { |
| type: file | "type": "file", |
| content: "echo 'Starting foobar'" | "content": "echo'Startingfoobar'" |
| stop.sh: | }, |
| type: file | "stop.sh": { |
| content: "echo 'Stopping foobar'" | "type": "file", |
| data: | "content": "echo'Stoppingfoobar'" |
| test-data.tar.gz: | } |
| type: file | }, |
| content: "!random!" | "data": { |
| size: 1Mb | "test-data.tar.gz": { |
| src: | "type": "file", |
| foobar: | "content": "!random!", |
| __init__.py: | "size": "1Mb" |
| type: file | } |
| content: "# just a comment" | }, |
| main.py: | "src": { |
| type: file | "foobar": { |
| content: > | "__init__.py": { |
| import os\n | "type": "file", |
| print('Foo Bar: %s' % os.path.abspath('.'))\n\n | "content": "#justacomment" |
| link_main.py: | }, |
| type: symlink | "main.py": { |
| target: ../foobar/main.py | "type": "file", |
| | "content": "importos\nprint('FooBar: %s'%os.path.abspath('.')\n\n |
| | }, |
| | "link_main.py": { |
| | "type": "symlink", |
| | "target": "../foobar/main.py" |
| | } |
| | } |
| | } |
| | } |
| | } |
| | } |
+---------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+
Save the Contract to disk (choose either YAML or JSON listing from above). Now
we simply tell Sower where to create these files, and the path to this contract.
If we want to create files based on this contract on `/home/davydany/foobar`, we would do
the following:
If you chose the YAML, run the following:
.. code:: bash
$ sower sow /home/davydany/foobar /tmp/sower-contract.yml
If you chose the JSON, run the following:
.. code:: bash
$ sower sow /home/davydany/foobar /tmp/sower-contract.json
This would create the following structure:
.. code:: bash
/home/davydany/foobar
├── bin
│ ├── start.sh
│ └── stop.sh
├── data
│ └── test-data.tar.gz
└── src
└── foobar
├── __init__.py
├── link_main.py -> /tmp/foobar/src/foobar/main.py
└── main.py
4 directories, 6 files
The Solution - Part 2
---------------------
Now, suppose you need to do this in your integration tests that use python's `unittest`. You
can still leverage this with the Sower API.
You would have something like this in your test's `setUp` method.
.. code::
import tempfile
import unittest
from sower.farm import perform_sow
class TestMyApp(unittest.TestCase):
def setUp(self):
self.root = tempfile.mkdtemp('_farmer_test')
self.contract = """
---
sower:
plan:
bin:
start.sh:
type: file
content: "echo 'Starting foobar'"
stop.sh:
type: file
content: "echo 'Stopping foobar'"
data:
test-data.tar.gz:
type: file
content: "!random!"
size: 1Mb
src:
foobar:
__init__.py:
type: file
content: "# just a comment"
main.py:
type: file
content: >
import os\n
print('Foo Bar: %s' % os.path.abspath('.'))\n\n
link_main.py:
type: symlink
target: ../foobar/main.py
"""
perform_sow(self.contract, self.root)
:alt: Sultan logo
:align: right
:width: 300px
:scale: 50%
.. image:: https://badge.fury.io/py/sower.png
:target: https://badge.fury.io/py/sower
.. image:: https://travis-ci.org/aeroxis/sower.svg?branch=master
:target: https://travis-ci.org/aeroxis/sower
.. image:: http://img.shields.io/:license-mit-blue.svg
:alt: MIT License
:target: http://doge.mit-license.org
Sower
=====
**Sower "plants" directories, files and symlinks on your filesystem based on a contract you tell it.**
How to Install
--------------
.. code:: bash
$ pip install sower
Why Do You Need Sower?
======================
The Problem
-----------
Have you ever been in a situation where you needed to create a large set of
files, that may span multiple subdirectories? You might need to do this for
testing, especially if your application that you're testing is supposed to
be tested for how it manages a set of files based on their directory
structure.
The Solution - Part 1
---------------------
Sower is the solution for this problem! You simply define a *contract* in
YAML or JSON like the following:
+---------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+
| YAML (sower-contract.yml) + JSON (sower-contract.json) +
+=======================================================================================+===============================================================================================+
| | |
| .. code:: | .. code:: |
| | |
| --- | { |
| sower: | "sower": { |
| plan: | "plan": { |
| bin: | "bin": { |
| start.sh: | "start.sh": { |
| type: file | "type": "file", |
| content: "echo 'Starting foobar'" | "content": "echo'Startingfoobar'" |
| stop.sh: | }, |
| type: file | "stop.sh": { |
| content: "echo 'Stopping foobar'" | "type": "file", |
| data: | "content": "echo'Stoppingfoobar'" |
| test-data.tar.gz: | } |
| type: file | }, |
| content: "!random!" | "data": { |
| size: 1Mb | "test-data.tar.gz": { |
| src: | "type": "file", |
| foobar: | "content": "!random!", |
| __init__.py: | "size": "1Mb" |
| type: file | } |
| content: "# just a comment" | }, |
| main.py: | "src": { |
| type: file | "foobar": { |
| content: > | "__init__.py": { |
| import os\n | "type": "file", |
| print('Foo Bar: %s' % os.path.abspath('.'))\n\n | "content": "#justacomment" |
| link_main.py: | }, |
| type: symlink | "main.py": { |
| target: ../foobar/main.py | "type": "file", |
| | "content": "importos\nprint('FooBar: %s'%os.path.abspath('.')\n\n |
| | }, |
| | "link_main.py": { |
| | "type": "symlink", |
| | "target": "../foobar/main.py" |
| | } |
| | } |
| | } |
| | } |
| | } |
| | } |
+---------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------+
Save the Contract to disk (choose either YAML or JSON listing from above). Now
we simply tell Sower where to create these files, and the path to this contract.
If we want to create files based on this contract on `/home/davydany/foobar`, we would do
the following:
If you chose the YAML, run the following:
.. code:: bash
$ sower sow /home/davydany/foobar /tmp/sower-contract.yml
If you chose the JSON, run the following:
.. code:: bash
$ sower sow /home/davydany/foobar /tmp/sower-contract.json
This would create the following structure:
.. code:: bash
/home/davydany/foobar
├── bin
│ ├── start.sh
│ └── stop.sh
├── data
│ └── test-data.tar.gz
└── src
└── foobar
├── __init__.py
├── link_main.py -> /tmp/foobar/src/foobar/main.py
└── main.py
4 directories, 6 files
The Solution - Part 2
---------------------
Now, suppose you need to do this in your integration tests that use python's `unittest`. You
can still leverage this with the Sower API.
You would have something like this in your test's `setUp` method.
.. code::
import tempfile
import unittest
from sower.farm import perform_sow
class TestMyApp(unittest.TestCase):
def setUp(self):
self.root = tempfile.mkdtemp('_farmer_test')
self.contract = """
---
sower:
plan:
bin:
start.sh:
type: file
content: "echo 'Starting foobar'"
stop.sh:
type: file
content: "echo 'Stopping foobar'"
data:
test-data.tar.gz:
type: file
content: "!random!"
size: 1Mb
src:
foobar:
__init__.py:
type: file
content: "# just a comment"
main.py:
type: file
content: >
import os\n
print('Foo Bar: %s' % os.path.abspath('.'))\n\n
link_main.py:
type: symlink
target: ../foobar/main.py
"""
perform_sow(self.contract, self.root)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distributions
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
sower-1.1.1-py3-none-any.whl
(10.6 kB
view details)
sower-1.1.1-py2-none-any.whl
(10.6 kB
view details)
File details
Details for the file sower-1.1.1-py3-none-any.whl.
File metadata
- Download URL: sower-1.1.1-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea16fd396e62cbfb51782c0d2a9f31faeb2da8223b5282c6e352b1e8b68091c
|
|
| MD5 |
feef4d02eb86fcf14f9890f38e08972a
|
|
| BLAKE2b-256 |
64970c7ccf94b9daa2f17358820f1aa67c842509a3e90e17e4906a992b4da091
|
File details
Details for the file sower-1.1.1-py2-none-any.whl.
File metadata
- Download URL: sower-1.1.1-py2-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb637c342b04b0dd9256be6e8aef22bcdee9cdb704d9a3518a9a60ec4ec2033c
|
|
| MD5 |
dd035ee981c68ab74c12e825207f672a
|
|
| BLAKE2b-256 |
42f9ac71a9b56ba9bedee8e262d579bf566ecbf7541e37bbaae7729efa2712e8
|