jenkins-bot has submitted this change and it was merged.
Change subject: [bugfix] fix tests for wikidata ......................................................................
[bugfix] fix tests for wikidata
- wikidata:test:Wikidata:Main_Page does not has a Wikidata item. Test that ItemPage.fromPage(page) raises a NoPage exception - additional tests added.
Bug: T134655 Change-Id: I3e998995972d2cc0f785604c4c2688a61f6cd047 --- M tests/wikibase_tests.py 1 file changed, 17 insertions(+), 0 deletions(-)
Approvals: Mpaa: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/wikibase_tests.py b/tests/wikibase_tests.py index 7b747e3..6cfceaf 100644 --- a/tests/wikibase_tests.py +++ b/tests/wikibase_tests.py @@ -1131,14 +1131,31 @@ }, }
+ def test_own_repository(self, key): + """Test that a data repository family is its own repository.""" + site = self.get_site(key) + self.assertEqual(site, site.data_repository()) + self.assertTrue(site.is_data_repository) + def test_own_client(self, key): """Test that a data repository family can be its own client.""" site = self.get_site(key) + self.assertTrue(site.has_data_repository)
+ def test_item_exists(self): + """Test that a ItemPage exists for wikidata:wikidata.""" + site = self.get_site('wikidata') page = pywikibot.Page(site, 'Wikidata:Main Page') item = pywikibot.ItemPage.fromPage(page) self.assertEqual(item.site, site)
+ def test_item_not_exists(self): + """Test that a ItemPage does not exists for test:wikidata.""" + site = self.get_site('wikidatatest') + page = pywikibot.Page(site, 'Wikidata:Main Page') + with self.assertRaises(pywikibot.NoPage): + pywikibot.ItemPage.fromPage(page) +
class TestUnconnectedClient(TestCase):
pywikibot-commits@lists.wikimedia.org