Skip to content
Snippets Groups Projects
Commit 3286a811 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Started writing tests

parent 0d726be0
No related branches found
No related tags found
No related merge requests found
Pipeline #35 failed with stage
in 3 minutes and 30 seconds
......@@ -5,6 +5,10 @@ before_script:
- pip install -e .
- pip install -r test-requirements.txt
pytest:
script:
- py.test
pep8:
script:
- pep8 wooify
pep8==1.7.0
pytest==3.0.6
pytest-cov==2.4.0
name;sku;description;category1;category2;category3;image;weight;price;recommended_price;quantity;enabled;shipping_freight;fixed_shipping_rate_only;upc;brand;seo_title;seo_description;product_url;product_id
Test 1;"testFoo";"<p><span style=""shitty-css: yes;"">The testiest of tests!</span></p>";Test Parent / Test Child 1;;;;42.00;13.37;;;yes;0.00;no;;;;;http://example.com/product1;12345654321
Test 2;"testBar";"<p><span style=""shitty-css: yes;"">The testiest of tests!</span></p>";Test Parent / Test Child 2;;;;42.00;13.37;;;yes;0.00;no;;;;;http://example.com/product2;12345654321
Test 3;"testQux";"<p><span style=""shitty-css: yes;"">The testiest of tests!</span></p>";Testy Test;;;;42.00;13.37;;;yes;0.00;no;;;;;http://example.com/product3;12345654321
Test 4;"testBaz";"<p><span style=""shitty-css: yes;"">The testiest of tests!</span></p>";Test Parent / Test Child 2;;;;42.00;13.37;;;yes;0.00;no;;;;;http://example.com/product4;12345654321
import os
import pytest
from wooify.adapters.adapter import Adapter
def test_init():
with pytest.raises(NotImplementedError):
adapter = Adapter('foo')
def test_clean_products(monkeypatch):
def mockparse(self, test_file):
self.products = [{
'Description': '<b>foo',
}]
monkeypatch.setattr(Adapter, 'parse', mockparse)
adapter = Adapter('foo')
clean = adapter.clean_products
import csv
import os
import pytest
from wooify.wooifier import Wooifier
from wooify.adapters.adapter import Adapter
from wooify.constants import (ALLOWED_HTML_TAGS, HTML_FIELDS,
WOO_IMP_EXP_PRODUCT_FIELDS)
def test_init():
wooifier = Wooifier(Adapter)
assert wooifier.adapter_cls == Adapter
def test_wooify(monkeypatch, tmpdir):
def mockparse(self, test_file):
products = [{
'sku': 'test1',
'name': 'Test 1',
}]
for p in products:
product = dict(WOO_IMP_EXP_PRODUCT_FIELDS)
product.update({'SKU': p['sku'], 'Product Name': p['name']})
self.products.append(product)
monkeypatch.setattr(Adapter, 'parse', mockparse)
wooifier = Wooifier(Adapter)
in_file = tmpdir.join("input.csv")
products_file = tmpdir.join("products.csv")
categories_file = tmpdir.join("categories.csv")
wooifier.wooify(in_file, products_file.strpath, categories_file.strpath)
csv_reader = csv.DictReader(products_file.open())
for row in csv_reader:
assert row['SKU'] == 'test1'
assert row['Product Name'] == 'Test 1'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment