mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
# release_robot.py
|
|
#
|
|
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
|
|
# General Public License as public by the Free Software Foundation; version 2.0
|
|
# or (at your option) any later version. You can redistribute it and/or
|
|
# modify it under the terms of either of these two licenses.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the licenses; if not, see
|
|
# <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
|
|
# and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
|
|
# License, Version 2.0.
|
|
#
|
|
|
|
"""Tests for release_robot."""
|
|
|
|
import re
|
|
import unittest
|
|
|
|
from dulwich.contrib.release_robot import PATTERN
|
|
|
|
|
|
class TagPatternTests(unittest.TestCase):
|
|
|
|
def test_tag_pattern(self):
|
|
test_cases = {
|
|
'0.3': '0.3', 'v0.3': '0.3', 'release0.3': '0.3', 'Release-0.3': '0.3',
|
|
'v0.3rc1': '0.3rc1', 'v0.3-rc1': '0.3-rc1', 'v0.3-rc.1': '0.3-rc.1',
|
|
'version 0.3': '0.3', 'version_0.3_rc_1': '0.3_rc_1', 'v1': '1',
|
|
'0.3rc1': '0.3rc1'
|
|
}
|
|
for tc, version in test_cases.items():
|
|
m = re.match(PATTERN, tc)
|
|
self.assertEqual(m.group(1), version)
|