Merge pull request #3380 from anandpdoshi/anand-may-28
[fix] selenium test and changed Creation Document No to a Dynamic Link
This commit is contained in:
commit
148386f73e
12
.travis.yml
12
.travis.yml
@ -6,6 +6,10 @@ python:
|
|||||||
services:
|
services:
|
||||||
- mysql
|
- mysql
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- "export DISPLAY=:99.0"
|
||||||
|
- "sh -e /etc/init.d/xvfb start"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- sudo apt-get purge -y mysql-common
|
- sudo apt-get purge -y mysql-common
|
||||||
- wget https://raw.githubusercontent.com/frappe/bench/master/install_scripts/setup_frappe.sh
|
- wget https://raw.githubusercontent.com/frappe/bench/master/install_scripts/setup_frappe.sh
|
||||||
@ -22,7 +26,9 @@ script:
|
|||||||
- bench use test_site
|
- bench use test_site
|
||||||
- bench reinstall
|
- bench reinstall
|
||||||
- bench build-website
|
- bench build-website
|
||||||
- bench --verbose run-tests
|
- bench serve &
|
||||||
|
- sleep 10
|
||||||
|
- bench --verbose run-tests --driver Firefox
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- mysql -e 'create database test_frappe'
|
- mysql -e 'create database test_frappe'
|
||||||
@ -33,6 +39,6 @@ notifications:
|
|||||||
webhooks:
|
webhooks:
|
||||||
urls:
|
urls:
|
||||||
- https://webhooks.gitter.im/e/92b3bea86d8c5397beef
|
- https://webhooks.gitter.im/e/92b3bea86d8c5397beef
|
||||||
on_success: always
|
on_success: always
|
||||||
on_failure: always
|
on_failure: always
|
||||||
on_start: never
|
on_start: never
|
||||||
|
@ -151,19 +151,20 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "purchase_document_type",
|
"fieldname": "purchase_document_type",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Link",
|
||||||
"label": "Creation Document Type",
|
"label": "Creation Document Type",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "\nPurchase Receipt\nStock Entry\nSerial No",
|
"options": "DocType",
|
||||||
"permlevel": 0,
|
"permlevel": 0,
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "purchase_document_no",
|
"fieldname": "purchase_document_no",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Dynamic Link",
|
||||||
"hidden": 0,
|
"hidden": 0,
|
||||||
"label": "Creation Document No",
|
"label": "Creation Document No",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
|
"options": "purchase_document_type",
|
||||||
"permlevel": 0,
|
"permlevel": 0,
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
@ -417,7 +418,7 @@
|
|||||||
"icon": "icon-barcode",
|
"icon": "icon-barcode",
|
||||||
"idx": 1,
|
"idx": 1,
|
||||||
"in_create": 0,
|
"in_create": 0,
|
||||||
"modified": "2015-02-20 05:08:12.961403",
|
"modified": "2015-05-28 21:35:58.378231",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Serial No",
|
"name": "Serial No",
|
||||||
|
@ -34,6 +34,9 @@ class SerialNo(StockController):
|
|||||||
self.validate_item()
|
self.validate_item()
|
||||||
self.on_stock_ledger_entry()
|
self.on_stock_ledger_entry()
|
||||||
|
|
||||||
|
valid_purchase_document_type = ("Purchase Receipt", "Stock Entry", "Serial No")
|
||||||
|
self.validate_value("purchase_document_type", "in", valid_purchase_document_type)
|
||||||
|
|
||||||
def set_maintenance_status(self):
|
def set_maintenance_status(self):
|
||||||
if not self.warranty_expiry_date and not self.amc_expiry_date:
|
if not self.warranty_expiry_date and not self.amc_expiry_date:
|
||||||
self.maintenance_status = None
|
self.maintenance_status = None
|
||||||
|
25
erpnext/tests/test_client.py
Normal file
25
erpnext/tests/test_client.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||||
|
# License: GNU General Public License v3. See license.txt
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import unittest, frappe
|
||||||
|
from frappe.utils import sel
|
||||||
|
from frappe.utils import formatdate
|
||||||
|
|
||||||
|
selenium_tests = True
|
||||||
|
|
||||||
|
class TestLogin(unittest.TestCase):
|
||||||
|
def setUp(self):
|
||||||
|
sel.login()
|
||||||
|
|
||||||
|
def test_material_request(self):
|
||||||
|
sel.new_doc("Stock", "Material Request")
|
||||||
|
sel.set_field("company", "_Test Company")
|
||||||
|
sel.add_child("items")
|
||||||
|
sel.set_field("item_code", "_Test Item")
|
||||||
|
sel.set_field("qty", "1")
|
||||||
|
sel.set_field("warehouse", "_Test Warehouse - _TC")
|
||||||
|
sel.set_field("schedule_date", formatdate())
|
||||||
|
sel.done_add_child("items")
|
||||||
|
sel.primary_action()
|
||||||
|
sel.wait_for_state("clean")
|
@ -1,10 +1,12 @@
|
|||||||
{
|
{
|
||||||
"db_name": "test_frappe",
|
"db_name": "test_frappe",
|
||||||
"db_password": "test_frappe",
|
"db_password": "test_frappe",
|
||||||
|
"auto_email_id": "test@example.com",
|
||||||
|
"mail_server": "smtp.example.com",
|
||||||
|
"mail_login": "test@example.com",
|
||||||
|
"mail_password": "test",
|
||||||
"admin_password": "admin",
|
"admin_password": "admin",
|
||||||
"auto_email_id": "admin@example.com",
|
"run_selenium_tests": 1,
|
||||||
"host_name": "http://localhost:8888",
|
"host_name": "http://localhost:8000",
|
||||||
"auto_email_id": "admin@example.com",
|
|
||||||
"mute_emails": 1,
|
|
||||||
"install_apps": ["erpnext"]
|
"install_apps": ["erpnext"]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user