43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
#!/usr/bin/python3
|
|
|
|
"""
|
|
Copyright (c) 2022, Ian Santopietro
|
|
All rights reserved.
|
|
|
|
This file is part of RepoLib.
|
|
|
|
RepoLib is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
RepoLib 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 Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with RepoLib. If not, see <https://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
import unittest
|
|
|
|
from ..shortcuts import popdev
|
|
from .. import util
|
|
|
|
class PopdevTestCase(unittest.TestCase):
|
|
|
|
def test_ppa(self):
|
|
source = popdev.PopdevSource()
|
|
|
|
# Verification data
|
|
uris_test = ['http://apt.pop-os.org/staging/master']
|
|
signed_test = '/usr/share/keyrings/popdev-archive-keyring.gpg'
|
|
source.load_from_shortcut(shortcut='popdev:master')
|
|
|
|
self.assertEqual(source.uris, uris_test)
|
|
self.assertEqual(source.ident, 'popdev-master')
|
|
self.assertEqual(source.suites, [util.DISTRO_CODENAME])
|
|
self.assertEqual(source.components, ['main'])
|
|
self.assertEqual(source.types, [util.SourceType.BINARY])
|
|
self.assertTrue(source.signed_by.endswith(signed_test)) |