Unix pattern matching will be used when command: fuel rel --sync-deployment-tasks will be executed By default *tasks.yaml pattern will be used It can be overwritten by --fp '*another*'. So in result command should be: fuel rel --sync-deployment-tasks --fp '*another*' implements blueprint granular-deployment-based-on-tasks Change-Id: I9897b0e1c96ab9d0d8fb48010c79561f40e275ac
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2014 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import os
|
|
|
|
import mock
|
|
|
|
from fuelclient.cli import utils
|
|
from fuelclient.tests import base
|
|
|
|
|
|
class TestUtils(base.UnitTestCase):
|
|
|
|
@mock.patch('fuelclient.cli.utils.os.walk')
|
|
def test_iterfiles(self, mwalk):
|
|
mwalk.return_value = [
|
|
('/some_directory/', [], ['valid.yaml', 'invalid.yml'])]
|
|
|
|
pattern = '*.yaml'
|
|
directory = '/some_directory'
|
|
|
|
expected_result = [os.path.join(directory, 'valid.yaml')]
|
|
files = list(utils.iterfiles(directory, pattern))
|
|
|
|
mwalk.assert_called_once_with(directory)
|
|
self.assertEqual(expected_result, files)
|