123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- # coding: utf-8
- # Copyright (C) 1994-2018 Altair Engineering, Inc.
- # For more information, contact Altair at www.altair.com.
- #
- # This file is part of the PBS Professional ("PBS Pro") software.
- #
- # Open Source License Information:
- #
- # PBS Pro is free software. You can redistribute it and/or modify it under the
- # terms of the GNU Affero General Public License as published by the Free
- # Software Foundation, either version 3 of the License, or (at your option) any
- # later version.
- #
- # PBS Pro is distributed in the hope that it will be useful, but WITHOUT ANY
- # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- # FOR A PARTICULAR PURPOSE.
- # See the GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Commercial License Information:
- #
- # For a copy of the commercial license terms and conditions,
- # go to: (http://www.pbspro.com/UserArea/agreement.html)
- # or contact the Altair Legal Department.
- #
- # Altair’s dual-license business model allows companies, individuals, and
- # organizations to create proprietary derivative works of PBS Pro and
- # distribute them - whether embedded or bundled with other software -
- # under a commercial license agreement.
- #
- # Use of Altair’s trademarks, including but not limited to "PBS™",
- # "PBS Professional®", and "PBS Pro™" and Altair’s logos is subject to Altair's
- # trademark licensing policies.
- from tests.functional import *
- class TestHostResources(TestFunctional):
- def test_set_direct_on_indirect_resc(self):
- """
- Set a direct resource on indirect resource and make sure
- this change is reflected on resource assigned.
- """
- # Create a consumable custom resources 'fooi'
- self.server.add_resource('fooi', 'long', 'nh')
- # Create 2 vnodes with individual hosts
- attr = {'resources_available.ncpus': 1}
- self.server.create_vnodes('vnode', attr, 2, sharednode=False,
- mom=self.mom)
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': 100}, 'vnode[0]')
- self.server.manager(MGR_CMD_SET, NODE, {'resources_available.fooi':
- '@vnode[0]'}, 'vnode[1]')
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': 100}, 'vnode[1]')
- self.server.expect(NODE, {'resources_assigned.fooi': ''},
- id='vnode[1]', op=UNSET, max_attempts=1)
- def test_set_direct_on_indirect_resc_busy(self):
- """
- Set a direct resource on indirect resource
- but a busy node and make sure this is failing.
- """
- # Create 2 vnodes with individual hosts
- attr = {'resources_available.ncpus': 1}
- self.server.create_vnodes('vnode', attr, 2, sharednode=False,
- mom=self.mom)
- # Create a consumable custom resources 'fooi'
- self.server.add_resource('fooi', 'long', 'nh')
- self.scheduler.add_resource("fooi")
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': 100}, 'vnode[0]')
- self.server.manager(MGR_CMD_SET, NODE, {'resources_available.fooi':
- '@vnode[0]'}, 'vnode[1]')
- # Submit jobs.
- a = {'Resource_List.fooi': 50}
- J = Job(attrs=a)
- self.server.submit(J)
- j2 = self.server.submit(J)
- self.server.expect(JOB, {'job_state': 'R'}, id=j2)
- self.server.expect(NODE, {'state': 'job-busy'}, id='vnode[1]')
- try:
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': 100},
- 'vnode[1]')
- except PbsManagerError:
- pass
- else:
- self.server.expect(NODE, {'resources_available.fooi': 100},
- id='vnode[1]', op=UNSET, max_attempts=1)
- def test_set_direct_on_target_node(self):
- """
- Set a direct resource on target node which should
- fail with error.
- A and B are having direct resources.
- C -> B
- B -> A should fail as it is alreay a target.
- """
- # Create 3 vnodes with individual hosts
- attr = {'resources_available.ncpus': 1}
- self.server.create_vnodes('vnode', attr, 3, sharednode=False,
- mom=self.mom)
- # Create a consumable custom resources 'fooi'
- self.server.add_resource('fooi', 'long', 'nh')
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': 100}, 'vnode[0]')
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': 100}, 'vnode[1]')
- self.server.manager(MGR_CMD_SET, NODE, {'resources_available.fooi':
- '@vnode[1]'}, 'vnode[2]')
- try:
- self.server.manager(MGR_CMD_SET, NODE,
- {'resources_available.fooi': '@vnode[0]'},
- 'vnode[1]')
- except PbsManagerError:
- pass
- else:
- _msg = "Setting indirect resources on a target object should fail"
- self.assertTrue(False, _msg)
- def test_create_node_without_resc_set(self):
- """
- Create a consumable resource then create a new node.
- The resources_assigned value should not get assigned
- on it without explicitely setting resource on the node.
- """
- # Create a consumable custom resources 'fooi'
- self.server.add_resource('fooi', 'long', 'nh')
- self.server.manager(MGR_CMD_DELETE, NODE, None, "")
- self.server.manager(MGR_CMD_CREATE, NODE, id=self.mom.shortname)
- self.server.expect(NODE, {'resources_assigned.fooi': ''},
- id=self.mom.shortname, op=UNSET, max_attempts=1)
|