benoit@0: # -*- encoding: utf-8 -*-
benoit@0: # Description:
benoit@0: # Test suites to test the ProductTree
benoit@0: #
benoit@0: # Authors:
benoit@0: # BenoƮt Allard <benoit.allard@greenbone.net>
benoit@0: #
benoit@0: # Copyright:
benoit@0: # Copyright (C) 2014 Greenbone Networks GmbH
benoit@0: #
benoit@0: # This program is free software; you can redistribute it and/or
benoit@0: # modify it under the terms of the GNU General Public License
benoit@0: # as published by the Free Software Foundation; either version 2
benoit@0: # of the License, or (at your option) any later version.
benoit@0: #
benoit@0: # This program is distributed in the hope that it will be useful,
benoit@0: # but WITHOUT ANY WARRANTY; without even the implied warranty of
benoit@0: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
benoit@0: # GNU General Public License for more details.
benoit@0: #
benoit@0: # You should have received a copy of the GNU General Public License
benoit@0: # along with this program; if not, write to the Free Software
benoit@0: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
benoit@0: 
benoit@0: from .utils import TestCase
benoit@0: 
benoit@0: from farol.session import CVRFs
benoit@0: 
benoit@0: class TestBranches(TestCase):
benoit@0: 
benoit@0:     def testCreateProduct(self):
benoit@0:         self.createDoc('Title', 'Type')
benoit@0:         self.app.post('/producttree/create', follow_redirects=True)
benoit@0:         self.app.get('/producttree/product/add')
benoit@0:         self.app.post('/producttree/product/add', data=dict(name="Name", productid="1131", cpe="", parent_branch="", parent_relationship=""))
benoit@0: 
benoit@0:     def testCreateProductInTree(self):
benoit@0:         rv = self.createDoc('Title', 'Type')
benoit@0:         self.assertEqual(rv.status_code, 200)
benoit@0:         self.app.post('/producttree/create')
benoit@0:         self.assertFalse(CVRFs[self.id]._producttree is None)
benoit@0:         self.app.get('/producttree/branch/add')
benoit@0:         self.app.post('/producttree/branch/add', data=dict(type="Vendor", name="SecPod", parent=""))
benoit@0:         self.app.get('/producttree/product/add')
benoit@0:         self.app.post('/producttree/product/add', data=dict(name="Name", productid="1131", cpe="", parent_branch="0", parent_relationship=""))
benoit@0:         self.assertEqual(len(CVRFs[self.id]._producttree._products), 1)
benoit@0:         prod = CVRFs[self.id]._producttree._products[0]
benoit@0:         self.assertEqual(prod._parent.getPath(), ())
benoit@0: 
benoit@0:     def testInsertProductInTree(self):
benoit@0:         rv = self.createDoc('Title', 'Type')
benoit@0:         self.assertEqual(rv.status_code, 200)
benoit@0:         self.app.post('/producttree/create')
benoit@0:         self.assertFalse(CVRFs[self.id]._producttree is None)
benoit@0:         self.app.get('/producttree/product/add')
benoit@0:         rv = self.app.post('/producttree/product/add', data=dict(name="Name", productid="1131", cpe="", parent_branch="", parent_relationship=""))
benoit@0:         self.assertEqual(rv.status_code, 302)
benoit@0:         self.app.get('/producttree/branch/add')
benoit@0:         rv = self.app.post('/producttree/branch/add', data=dict(type="Vendor", name="SecPod", parent=""))
benoit@0:         self.assertEqual(rv.status_code, 302)
benoit@0:         self.app.get('/producttree/product/1131/edit')
benoit@0:         rv = self.app.post('/producttree/product/1131/edit', data=dict(name="Name", productid="1131", cpe="", parent_branch="0", parent_relationship=""))
benoit@0:         self.assertEqual(rv.status_code, 302)
benoit@0:         rv = self.app.post('/producttree/product/1131/edit', data=dict(name="Name", productid="1131", cpe="", parent_branch="", parent_relationship=""))
benoit@0:         self.assertEqual(rv.status_code, 302)
benoit@0: 
benoit@0:     def testCreateProductInRelation(self):
benoit@0:         rv = self.createDoc('Title', 'Type')
benoit@0:         self.assertEqual(rv.status_code, 200)
benoit@0:         self.app.post('/producttree/create')
benoit@0:         self.assertFalse(CVRFs[self.id]._producttree is None)
benoit@0:         self.app.post('/producttree/product/add', data=dict(name="Name 1", productid="1131", cpe="", parent_branch="", parent_relationship=""))
benoit@0:         self.app.post('/producttree/product/add', data=dict(name="Name 2", productid="1132", cpe="", parent_branch="", parent_relationship=""))
benoit@0:         self.app.get('/producttree/relationship/add')
benoit@0:         self.app.post('/producttree/relationship/add', data=dict(productreference="1131", relationtype="as if", relatestoproductreference="1132"))
benoit@0:         self.app.get('/')
benoit@0:         self.app.get('/producttree/product/add')
benoit@0:         self.app.post('/producttree/product/add', data=dict(name="Name 3", productid="1133", cpe="", parent_branch="", parent_relationship="0"))
benoit@0: