2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2016-08-01 17:05:48 +03:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2017-03-08 17:24:58 +02:00
|
|
|
import json
|
|
|
|
from os.path import join
|
|
|
|
|
2016-08-01 17:05:48 +03:00
|
|
|
from platformio import util
|
2017-03-08 17:24:58 +02:00
|
|
|
from platformio.managers.package import PackageManager
|
2016-08-01 17:05:48 +03:00
|
|
|
|
|
|
|
|
2017-03-08 17:24:58 +02:00
|
|
|
def test_pkg_input_parser():
|
2016-08-01 17:05:48 +03:00
|
|
|
items = [
|
|
|
|
["PkgName", ("PkgName", None, None)],
|
|
|
|
[("PkgName", "!=1.2.3,<2.0"), ("PkgName", "!=1.2.3,<2.0", None)],
|
|
|
|
["PkgName@1.2.3", ("PkgName", "1.2.3", None)],
|
|
|
|
[("PkgName@1.2.3", "1.2.5"), ("PkgName@1.2.3", "1.2.5", None)],
|
2017-09-16 00:57:36 +03:00
|
|
|
["id=13", ("id=13", None, None)],
|
|
|
|
["id=13@~1.2.3", ("id=13", "~1.2.3", None)],
|
2017-03-08 17:24:58 +02:00
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
util.get_home_dir(),
|
|
|
|
(".platformio", None, "file://" + util.get_home_dir())
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"LocalName=" + util.get_home_dir(),
|
|
|
|
("LocalName", None, "file://" + util.get_home_dir())
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"LocalName=%s@>2.3.0" % util.get_home_dir(),
|
|
|
|
("LocalName", ">2.3.0", "file://" + util.get_home_dir())
|
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://github.com/user/package.git",
|
|
|
|
("package", None, "git+https://github.com/user/package.git")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"MyPackage=https://gitlab.com/user/package.git",
|
|
|
|
("MyPackage", None, "git+https://gitlab.com/user/package.git")
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"MyPackage=https://gitlab.com/user/package.git@3.2.1,!=2",
|
|
|
|
("MyPackage", "3.2.1,!=2",
|
|
|
|
"git+https://gitlab.com/user/package.git")
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"https://somedomain.com/path/LibraryName-1.2.3.zip",
|
|
|
|
("LibraryName-1.2.3", None,
|
|
|
|
"https://somedomain.com/path/LibraryName-1.2.3.zip")
|
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://github.com/user/package/archive/branch.zip",
|
|
|
|
("branch", None,
|
|
|
|
"https://github.com/user/package/archive/branch.zip")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"https://github.com/user/package/archive/branch.zip@~1.2.3",
|
|
|
|
("branch", "~1.2.3",
|
|
|
|
"https://github.com/user/package/archive/branch.zip")
|
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://github.com/user/package/archive/branch.tar.gz",
|
2017-03-08 17:24:58 +02:00
|
|
|
("branch.tar", None,
|
|
|
|
"https://github.com/user/package/archive/branch.tar.gz")
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"https://github.com/user/package/archive/branch.tar.gz@!=5",
|
|
|
|
("branch.tar", "!=5",
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://github.com/user/package/archive/branch.tar.gz")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://developer.mbed.org/users/user/code/package/",
|
|
|
|
("package", None,
|
|
|
|
"hg+https://developer.mbed.org/users/user/code/package/")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://github.com/user/package#v1.2.3",
|
|
|
|
("package", None, "git+https://github.com/user/package#v1.2.3")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"https://github.com/user/package.git#branch",
|
|
|
|
("package", None, "git+https://github.com/user/package.git#branch")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"PkgName=https://github.com/user/package.git#a13d344fg56",
|
|
|
|
("PkgName", None,
|
|
|
|
"git+https://github.com/user/package.git#a13d344fg56")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"user/package",
|
|
|
|
("package", None, "git+https://github.com/user/package")
|
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"PkgName=user/package",
|
|
|
|
("PkgName", None, "git+https://github.com/user/package")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"PkgName=user/package#master",
|
|
|
|
("PkgName", None, "git+https://github.com/user/package#master")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"git+https://github.com/user/package",
|
|
|
|
("package", None, "git+https://github.com/user/package")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"hg+https://example.com/user/package",
|
|
|
|
("package", None, "hg+https://example.com/user/package")
|
2017-03-08 17:24:58 +02:00
|
|
|
],
|
2017-11-27 21:04:51 +02:00
|
|
|
[
|
|
|
|
"git@github.com:user/package.git",
|
|
|
|
("package", None, "git+git@github.com:user/package.git")
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"git@github.com:user/package.git#v1.2.0",
|
|
|
|
("package", None, "git+git@github.com:user/package.git#v1.2.0")
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"LocalName=git@github.com:user/package.git#v1.2.0@~1.2.0",
|
|
|
|
("LocalName", "~1.2.0", "git+git@github.com:user/package.git#v1.2.0")
|
|
|
|
],
|
2017-03-08 17:24:58 +02:00
|
|
|
[
|
2016-12-02 20:47:37 +02:00
|
|
|
"git+ssh://git@gitlab.private-server.com/user/package#1.2.0",
|
|
|
|
("package", None,
|
|
|
|
"git+ssh://git@gitlab.private-server.com/user/package#1.2.0")
|
2017-06-24 15:45:48 +03:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"git+ssh://user@gitlab.private-server.com:1234/package#1.2.0",
|
|
|
|
("package", None,
|
|
|
|
"git+ssh://user@gitlab.private-server.com:1234/package#1.2.0")
|
2017-11-25 00:31:16 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"LocalName=git+ssh://user@gitlab.private-server.com:1234"
|
|
|
|
"/package#1.2.0@!=13",
|
|
|
|
("LocalName", "!=13",
|
|
|
|
"git+ssh://user@gitlab.private-server.com:1234/package#1.2.0")
|
2016-12-02 20:47:37 +02:00
|
|
|
]
|
2016-08-01 17:05:48 +03:00
|
|
|
]
|
|
|
|
for params, result in items:
|
|
|
|
if isinstance(params, tuple):
|
2017-11-25 00:31:16 +02:00
|
|
|
assert PackageManager.parse_pkg_uri(*params) == result
|
2016-08-01 17:05:48 +03:00
|
|
|
else:
|
2017-11-25 00:31:16 +02:00
|
|
|
assert PackageManager.parse_pkg_uri(params) == result
|
2017-03-08 17:24:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_install_packages(isolated_pio_home, tmpdir):
|
|
|
|
packages = [
|
|
|
|
dict(id=1, name="name_1", version="shasum"),
|
|
|
|
dict(id=1, name="name_1", version="2.0.0"),
|
|
|
|
dict(id=1, name="name_1", version="2.1.0"),
|
2017-12-27 19:37:26 +02:00
|
|
|
dict(id=1, name="name_1", version="1.2"),
|
2017-03-08 17:24:58 +02:00
|
|
|
dict(id=1, name="name_1", version="1.0.0"),
|
|
|
|
dict(name="name_2", version="1.0.0"),
|
|
|
|
dict(name="name_2", version="2.0.0",
|
|
|
|
__src_url="git+https://github.com"),
|
|
|
|
dict(name="name_2", version="3.0.0",
|
|
|
|
__src_url="git+https://github2.com"),
|
|
|
|
dict(name="name_2", version="4.0.0",
|
|
|
|
__src_url="git+https://github2.com")
|
|
|
|
]
|
|
|
|
|
|
|
|
pm = PackageManager(join(util.get_home_dir(), "packages"))
|
|
|
|
for package in packages:
|
|
|
|
tmp_dir = tmpdir.mkdir("tmp-package")
|
|
|
|
tmp_dir.join("package.json").write(json.dumps(package))
|
|
|
|
pm._install_from_url(package['name'], "file://%s" % str(tmp_dir))
|
|
|
|
tmp_dir.remove(rec=1)
|
|
|
|
|
|
|
|
assert len(pm.get_installed()) == len(packages) - 1
|
|
|
|
|
|
|
|
pkg_dirnames = [
|
2017-12-27 19:37:26 +02:00
|
|
|
'name_1_ID1', 'name_1_ID1@1.0.0', 'name_1_ID1@1.2',
|
2017-03-08 17:24:58 +02:00
|
|
|
'name_1_ID1@2.0.0', 'name_1_ID1@shasum', 'name_2',
|
|
|
|
'name_2@src-177cbce1f0705580d17790fda1cc2ef5',
|
|
|
|
'name_2@src-f863b537ab00f4c7b5011fc44b120e1f'
|
|
|
|
]
|
|
|
|
assert set([p.basename for p in isolated_pio_home.join(
|
|
|
|
"packages").listdir()]) == set(pkg_dirnames)
|
|
|
|
|
|
|
|
|
2018-01-13 01:19:41 +02:00
|
|
|
def test_get_package():
|
2017-03-08 17:24:58 +02:00
|
|
|
tests = [
|
|
|
|
[("unknown", ), None],
|
|
|
|
[("1", ), None],
|
|
|
|
[("id=1", "shasum"), dict(id=1, name="name_1", version="shasum")],
|
|
|
|
[("id=1", "*"), dict(id=1, name="name_1", version="2.1.0")],
|
2017-12-27 19:37:26 +02:00
|
|
|
[("id=1", "^1"), dict(id=1, name="name_1", version="1.2")],
|
|
|
|
[("id=1", "^1"), dict(id=1, name="name_1", version="1.2")],
|
|
|
|
[("name_1", "<2"), dict(id=1, name="name_1", version="1.2")],
|
2017-03-08 17:24:58 +02:00
|
|
|
[("name_1", ">2"), None],
|
2017-12-27 19:37:26 +02:00
|
|
|
[("name_1", "2-0-0"), None],
|
2017-03-08 17:24:58 +02:00
|
|
|
[("name_2", ), dict(name="name_2", version="4.0.0")],
|
|
|
|
[("url_has_higher_priority", None, "git+https://github.com"),
|
|
|
|
dict(name="name_2", version="2.0.0",
|
|
|
|
__src_url="git+https://github.com")],
|
|
|
|
[("name_2", None, "git+https://github.com"),
|
|
|
|
dict(name="name_2", version="2.0.0",
|
|
|
|
__src_url="git+https://github.com")],
|
|
|
|
]
|
|
|
|
|
|
|
|
pm = PackageManager(join(util.get_home_dir(), "packages"))
|
|
|
|
for test in tests:
|
|
|
|
manifest = pm.get_package(*test[0])
|
|
|
|
if test[1] is None:
|
|
|
|
assert manifest is None, test
|
|
|
|
continue
|
|
|
|
for key, value in test[1].items():
|
|
|
|
assert manifest[key] == value, test
|