Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| db6e7fd246 | |||
| 33540344b0 | |||
| 1958ec222f | |||
| f2d431ab84 | |||
| 31d06224b0 | |||
| 51d8bb9da9 | |||
| f3635b2458 | |||
| 962e0cb4de | |||
| 8948fcc78d | |||
| 2f022d9d30 | |||
| 56701107db | |||
| 7ccfb90888 | |||
| 22a2cc5799 | |||
| 9d471bee20 | |||
| 16a774fae5 | |||
| 038dd6e36a | |||
| e468260f7f | |||
| da99dee429 | |||
| b96c5d4a33 | |||
| 73bf26b627 | |||
| df2f13fb66 | |||
| 7b27577915 | |||
| d76f914615 | |||
| d9d385cfe8 | |||
| 2076932cbf | |||
| 9fe1c36482 | |||
| c730d9ba9c | |||
| 3ed67431cf | |||
| 287942e174 | |||
| 4de2116717 | |||
| 3349c9f3d3 | |||
| a250074caa | |||
| 581e043255 | |||
| e932303c40 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -62,3 +62,5 @@ target/
|
|||||||
|
|
||||||
# Test
|
# Test
|
||||||
test.py
|
test.py
|
||||||
|
|
||||||
|
disabled
|
||||||
|
|||||||
4
.gitmodules
vendored
Normal file
4
.gitmodules
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[submodule "jogobot"]
|
||||||
|
path = jogobot
|
||||||
|
url = git@github.com:golderweb/wiki-jogobot-core.git
|
||||||
|
branch = test-v1
|
||||||
21
README.md
Normal file
21
README.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# wiki-jogobot-charts
|
||||||
|
This is a [Pywikibot](https://www.mediawiki.org/wiki/Manual:Pywikibot) based [Wikipedia Bot](https://de.wikipedia.org/wiki/Wikipedia:Bots)
|
||||||
|
of [User:JogoBot](https://de.wikipedia.org/wiki/Benutzer:JogoBot) on the
|
||||||
|
[German Wikipedia](https://de.wikipedia.org/wiki/Wikipedia:Hauptseite).
|
||||||
|
|
||||||
|
On [JogoBots wikipedia user page](https://de.wikipedia.org/wiki/Benutzer:JogoBot/Charts) a more detailed description can be found.
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
* Python 3.4+ (at least it is only tested with those)
|
||||||
|
* pywikibot-core 2.0
|
||||||
|
* [jogobot-core module](https://github.com/golderweb/wiki-jogobot-core) used as submodule
|
||||||
|
* [Isoweek module](https://pypi.python.org/pypi/isoweek)
|
||||||
|
|
||||||
|
## Bugs
|
||||||
|
[wiki-jogobot-charts on fs.golderweb.de (de)](https://fs.golderweb.de/proj20)
|
||||||
|
|
||||||
|
## License
|
||||||
|
GPLv3+
|
||||||
|
|
||||||
|
## Author Information
|
||||||
|
Copyright 2016 Jonathan Golder <jonathan@golderweb.de>
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
# __init__.py
|
# __init__.py
|
||||||
#
|
#
|
||||||
# Copyright 2015 GOLDERWEB – Jonathan Golder <jonathan@golderweb.de>
|
# Copyright 2016 Jonathan Golder <jonathan@golderweb.de>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# chartsbot.py
|
# charts.py
|
||||||
#
|
#
|
||||||
# original version by:
|
# original version by:
|
||||||
#
|
#
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
# modified by:
|
# modified by:
|
||||||
#
|
#
|
||||||
# Copyright 2015 GOLDERWEB – Jonathan Golder <jonathan@golderweb.de>
|
# Copyright 2016 Jonathan Golder <jonathan@golderweb.de>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -46,10 +46,14 @@ The following parameters are supported:
|
|||||||
|
|
||||||
|
|
||||||
import locale
|
import locale
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
import pywikibot
|
import pywikibot
|
||||||
from pywikibot import pagegenerators
|
from pywikibot import pagegenerators
|
||||||
|
|
||||||
|
import jogobot
|
||||||
|
|
||||||
from summarypage import SummaryPage
|
from summarypage import SummaryPage
|
||||||
|
|
||||||
# This is required for the text that is shown when you run this script
|
# This is required for the text that is shown when you run this script
|
||||||
@@ -87,31 +91,41 @@ class ChartsBot( ):
|
|||||||
# Force parsing of countrylist
|
# Force parsing of countrylist
|
||||||
self.force_reload = force_reload
|
self.force_reload = force_reload
|
||||||
|
|
||||||
# Set the edit summary message
|
# Output Information
|
||||||
|
jogobot.output( "Chartsbot invoked" )
|
||||||
|
|
||||||
|
# Save pywikibot site object
|
||||||
self.site = pywikibot.Site()
|
self.site = pywikibot.Site()
|
||||||
self.summary = "Bot: Aktualisiere Übersichtsseite Nummer-eins-Hits"
|
|
||||||
|
# Define edit summary
|
||||||
|
self.summary = jogobot.config["charts"]["edit_summary"].strip()
|
||||||
|
|
||||||
|
# Make sure summary starts with "Bot:"
|
||||||
|
if not self.summary[:len("Bot:")] == "Bot:":
|
||||||
|
self.summary = "Bot: " + self.summary.strip()
|
||||||
|
|
||||||
# Set locale to 'de_DE.UTF-8'
|
# Set locale to 'de_DE.UTF-8'
|
||||||
locale.setlocale(locale.LC_ALL, 'de_DE.UTF-8')
|
locale.setlocale(locale.LC_ALL, 'de_DE.UTF-8')
|
||||||
|
|
||||||
# provisional-onwiki-activation
|
|
||||||
page_active = pywikibot.Page( self.site, "Benutzer:JogoBot/active" )
|
|
||||||
text_active = page_active.get()
|
|
||||||
|
|
||||||
if "true" not in text_active.lower():
|
|
||||||
pywikibot.output( "Bot ist deaktiviert!" )
|
|
||||||
return False
|
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
"""Process each page from the generator."""
|
"""Process each page from the generator."""
|
||||||
|
# Count skipped pages (redirect or missing)
|
||||||
|
skipped = 0
|
||||||
for page in self.generator:
|
for page in self.generator:
|
||||||
self.treat(page)
|
if not self.treat(page):
|
||||||
|
skipped += 1
|
||||||
|
|
||||||
|
if skipped:
|
||||||
|
jogobot.output( "Chartsbot finished, {skipped} page(s) skipped"
|
||||||
|
.format( skipped=skipped ) )
|
||||||
|
else:
|
||||||
|
jogobot.output( "Chartsbot finished successfully" )
|
||||||
|
|
||||||
def treat(self, page):
|
def treat(self, page):
|
||||||
"""Load the given page, does some changes, and saves it."""
|
"""Load the given page, does some changes, and saves it."""
|
||||||
text = self.load(page)
|
text = self.load(page)
|
||||||
if not text:
|
if not text:
|
||||||
return
|
return False
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
# NOTE: Here you can modify the text in whatever way you want. #
|
# NOTE: Here you can modify the text in whatever way you want. #
|
||||||
@@ -126,7 +140,9 @@ class ChartsBot( ):
|
|||||||
text = sumpage.get_new_text()
|
text = sumpage.get_new_text()
|
||||||
|
|
||||||
if not self.save(text, page, self.summary, False):
|
if not self.save(text, page, self.summary, False):
|
||||||
pywikibot.output(u'Page %s not saved.' % page.title(asLink=True))
|
jogobot.output(u'Page %s not saved.' % page.title(asLink=True))
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
def load(self, page):
|
def load(self, page):
|
||||||
"""Load the text of the given page."""
|
"""Load the text of the given page."""
|
||||||
@@ -134,27 +150,31 @@ class ChartsBot( ):
|
|||||||
# Load the page
|
# Load the page
|
||||||
text = page.get()
|
text = page.get()
|
||||||
except pywikibot.NoPage:
|
except pywikibot.NoPage:
|
||||||
pywikibot.output(u"Page %s does not exist; skipping."
|
jogobot.output( u"Page %s does not exist; skipping."
|
||||||
% page.title(asLink=True))
|
% page.title(asLink=True), "ERROR" )
|
||||||
except pywikibot.IsRedirectPage:
|
except pywikibot.IsRedirectPage:
|
||||||
pywikibot.output(u"Page %s is a redirect; skipping."
|
jogobot.output( u"Page %s is a redirect; skipping."
|
||||||
% page.title(asLink=True))
|
% page.title(asLink=True), "ERROR" )
|
||||||
else:
|
else:
|
||||||
return text
|
return text
|
||||||
return None
|
return False
|
||||||
|
|
||||||
def save(self, text, page, comment=None, minorEdit=True,
|
def save(self, text, page, comment=None, minorEdit=True,
|
||||||
botflag=True):
|
botflag=True):
|
||||||
"""Update the given page with new text."""
|
"""Update the given page with new text."""
|
||||||
# only save if something was changed (and not just revision)
|
# only save if something was changed (and not just revision)
|
||||||
if text != page.get():
|
if text != page.get():
|
||||||
|
|
||||||
|
# Show diff only in interactive mode or in verbose mode
|
||||||
|
if not self.always or pywikibot.config.verbose_output:
|
||||||
|
|
||||||
# Show the title of the page we're working on.
|
# Show the title of the page we're working on.
|
||||||
# Highlight the title in purple.
|
# Highlight the title in purple.
|
||||||
pywikibot.output(u"\n\n>>> \03{lightpurple}%s\03{default} <<<"
|
jogobot.output( u">>> \03{lightpurple}%s\03{default} <<<"
|
||||||
% page.title())
|
% page.title())
|
||||||
# show what was changed
|
# show what was changed
|
||||||
pywikibot.showDiff(page.get(), text)
|
pywikibot.showDiff(page.get(), text)
|
||||||
pywikibot.output(u'Comment: %s' % comment)
|
jogobot.output(u'Comment: %s' % comment)
|
||||||
|
|
||||||
if self.always or pywikibot.input_yn(
|
if self.always or pywikibot.input_yn(
|
||||||
u'Do you want to accept these changes?',
|
u'Do you want to accept these changes?',
|
||||||
@@ -165,17 +185,17 @@ class ChartsBot( ):
|
|||||||
page.save(summary=comment or self.comment,
|
page.save(summary=comment or self.comment,
|
||||||
minor=minorEdit, botflag=botflag)
|
minor=minorEdit, botflag=botflag)
|
||||||
except pywikibot.LockedPage:
|
except pywikibot.LockedPage:
|
||||||
pywikibot.output(u"Page %s is locked; skipping."
|
jogobot.output( u"Page %s is locked; skipping."
|
||||||
% page.title(asLink=True))
|
% page.title(asLink=True), "ERROR" )
|
||||||
except pywikibot.EditConflict:
|
except pywikibot.EditConflict:
|
||||||
pywikibot.output(
|
jogobot.output(
|
||||||
u'Skipping %s because of edit conflict'
|
u'Skipping %s because of edit conflict'
|
||||||
% (page.title()))
|
% (page.title()), "ERROR")
|
||||||
except pywikibot.SpamfilterError as error:
|
except pywikibot.SpamfilterError as error:
|
||||||
pywikibot.output(
|
jogobot.output(
|
||||||
u'Cannot change %s because of spam blacklist \
|
u'Cannot change %s because of spam blacklist \
|
||||||
entry %s'
|
entry %s'
|
||||||
% (page.title(), error.url))
|
% (page.title(), error.url), "ERROR")
|
||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
@@ -190,9 +210,30 @@ def main(*args):
|
|||||||
@param args: command line arguments
|
@param args: command line arguments
|
||||||
@type args: list of unicode
|
@type args: list of unicode
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Process global arguments to determine desired site
|
# Process global arguments to determine desired site
|
||||||
local_args = pywikibot.handle_args(args)
|
local_args = pywikibot.handle_args(args)
|
||||||
|
|
||||||
|
# Get the jogobot-task_slug (basename of current file without ending)
|
||||||
|
task_slug = os.path.basename(__file__)[:-len(".py")]
|
||||||
|
|
||||||
|
# Before run, we need to check wether we are currently active or not
|
||||||
|
try:
|
||||||
|
# Will throw Exception if disabled/blocked
|
||||||
|
jogobot.is_active( task_slug )
|
||||||
|
|
||||||
|
except jogobot.jogobot.Blocked:
|
||||||
|
(type, value, traceback) = sys.exc_info()
|
||||||
|
jogobot.output( "\03{lightpurple} %s (%s)" % (value, type ),
|
||||||
|
"CRITICAL" )
|
||||||
|
|
||||||
|
except jogobot.jogobot.Disabled:
|
||||||
|
(type, value, traceback) = sys.exc_info()
|
||||||
|
jogobot.output( "\03{red} %s (%s)" % (value, type ),
|
||||||
|
"ERROR" )
|
||||||
|
|
||||||
|
# Bot/Task is active
|
||||||
|
else:
|
||||||
# This factory is responsible for processing command line arguments
|
# This factory is responsible for processing command line arguments
|
||||||
# that are also used by other scripts and that determine on which pages
|
# that are also used by other scripts and that determine on which pages
|
||||||
# to work on.
|
# to work on.
|
||||||
@@ -203,8 +244,8 @@ def main(*args):
|
|||||||
# If always is True, bot won't ask for confirmation of edit (automode)
|
# If always is True, bot won't ask for confirmation of edit (automode)
|
||||||
always = False
|
always = False
|
||||||
|
|
||||||
# If force_reload is True, bot will always parse Countrylist regardless of
|
# If force_reload is True, bot will always parse Countrylist regardless
|
||||||
# parsing is needed or not
|
# if parsing is needed or not
|
||||||
force_reload = False
|
force_reload = False
|
||||||
|
|
||||||
# Parse command line arguments
|
# Parse command line arguments
|
||||||
@@ -214,6 +255,7 @@ def main(*args):
|
|||||||
elif arg.startswith("-force-reload"):
|
elif arg.startswith("-force-reload"):
|
||||||
force_reload = True
|
force_reload = True
|
||||||
else:
|
else:
|
||||||
|
pass
|
||||||
genFactory.handleArg(arg)
|
genFactory.handleArg(arg)
|
||||||
|
|
||||||
if not gen:
|
if not gen:
|
||||||
177
countrylist.py
177
countrylist.py
@@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
# countrylist.py
|
# countrylist.py
|
||||||
#
|
#
|
||||||
# Copyright 2015 GOLDERWEB – Jonathan Golder <jonathan@golderweb.de>
|
# Copyright 2016 Jonathan Golder <jonathan@golderweb.de>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -25,6 +25,7 @@
|
|||||||
Provides a class for handling charts list per country and year
|
Provides a class for handling charts list per country and year
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import re
|
||||||
import locale
|
import locale
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
@@ -33,6 +34,8 @@ from isoweek import Week
|
|||||||
import pywikibot
|
import pywikibot
|
||||||
import mwparserfromhell as mwparser
|
import mwparserfromhell as mwparser
|
||||||
|
|
||||||
|
import jogobot
|
||||||
|
|
||||||
|
|
||||||
class CountryList():
|
class CountryList():
|
||||||
"""
|
"""
|
||||||
@@ -97,15 +100,15 @@ class CountryList():
|
|||||||
|
|
||||||
def find_year( self ):
|
def find_year( self ):
|
||||||
"""
|
"""
|
||||||
Try to find the year related to CountryList
|
Try to find the year related to CountryList using regex
|
||||||
"""
|
"""
|
||||||
self.year = datetime.now().year
|
match = re.search( r"^.+\((\d{4})\)", self.page.title() )
|
||||||
|
|
||||||
# Check if year is in page.title, if not try last year
|
# We matched something
|
||||||
if str( self.year ) not in self.page.title():
|
if match:
|
||||||
self.year -= 1
|
self.year = int(match.group(1))
|
||||||
# If last year does not match, raise YearError
|
|
||||||
if str( self.year ) not in self.page.title():
|
else:
|
||||||
raise CountryListError( "CountryList year is errorneous!" )
|
raise CountryListError( "CountryList year is errorneous!" )
|
||||||
|
|
||||||
def parse( self ):
|
def parse( self ):
|
||||||
@@ -113,6 +116,9 @@ class CountryList():
|
|||||||
Handles the parsing process
|
Handles the parsing process
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# Set revid
|
||||||
|
self.revid = self.page.latest_revision_id
|
||||||
|
|
||||||
# Parse page with mwparser
|
# Parse page with mwparser
|
||||||
self.generate_wikicode()
|
self.generate_wikicode()
|
||||||
|
|
||||||
@@ -127,6 +133,10 @@ class CountryList():
|
|||||||
# For easy detecting wether we have parsed self
|
# For easy detecting wether we have parsed self
|
||||||
self.parsed = True
|
self.parsed = True
|
||||||
|
|
||||||
|
# Log parsed page
|
||||||
|
jogobot.output( "Parsed revision {revid} of page [[{title}]]".format(
|
||||||
|
revid=self.revid, title=self.page.title() ) )
|
||||||
|
|
||||||
def detect_belgian( self ):
|
def detect_belgian( self ):
|
||||||
"""
|
"""
|
||||||
Detect wether current entry is on of the belgian (Belgien/Wallonien)
|
Detect wether current entry is on of the belgian (Belgien/Wallonien)
|
||||||
@@ -350,6 +360,45 @@ missing!" )
|
|||||||
for ref in self._interpret_raw.ifilter_tags(matches="ref"):
|
for ref in self._interpret_raw.ifilter_tags(matches="ref"):
|
||||||
self._interpret_raw.remove( ref )
|
self._interpret_raw.remove( ref )
|
||||||
|
|
||||||
|
# Handle SortKeyName and SortKey
|
||||||
|
for template in self._interpret_raw.ifilter_templates(
|
||||||
|
matches="SortKey" ):
|
||||||
|
|
||||||
|
if template.name == "SortKeyName":
|
||||||
|
# Differing Link-Destination is provided as param 3
|
||||||
|
if template.has(3):
|
||||||
|
# Construct link out of Template, Params:
|
||||||
|
# 1 = Surname
|
||||||
|
# 2 = Name
|
||||||
|
# 3 = Link-Dest
|
||||||
|
interpret_link = mwparser.nodes.wikilink.Wikilink(
|
||||||
|
str(template.get(3).value),
|
||||||
|
str(template.get(1).value) + " " +
|
||||||
|
str(template.get(2).value) )
|
||||||
|
|
||||||
|
# Default Link-Dest [[Surname Name]]
|
||||||
|
else:
|
||||||
|
interpret_link = mwparser.nodes.wikilink.Wikilink(
|
||||||
|
str(template.get(1).value) + " " +
|
||||||
|
str(template.get(2).value) )
|
||||||
|
|
||||||
|
# Replace Template with link
|
||||||
|
self._interpret_raw.replace( template, interpret_link )
|
||||||
|
|
||||||
|
# SortKey
|
||||||
|
else:
|
||||||
|
# Replace SortKey with text from param 2 if present
|
||||||
|
if template.has(2):
|
||||||
|
self._interpret_raw.replace( template,
|
||||||
|
template.get(2).value)
|
||||||
|
# Else Remove SortKey (text should follow behind SortKey)
|
||||||
|
else:
|
||||||
|
self._interpret_raw.replace( template, None)
|
||||||
|
|
||||||
|
# Normally won't be needed as there should be only one
|
||||||
|
# SortKey-Temlate but ... its a wiki
|
||||||
|
break
|
||||||
|
|
||||||
# Remove whitespace
|
# Remove whitespace
|
||||||
self._interpret_raw = str(self._interpret_raw).strip()
|
self._interpret_raw = str(self._interpret_raw).strip()
|
||||||
else:
|
else:
|
||||||
@@ -409,6 +458,23 @@ missing!" )
|
|||||||
else:
|
else:
|
||||||
return str(keywords[0])
|
return str(keywords[0])
|
||||||
|
|
||||||
|
def __str__( self ):
|
||||||
|
"""
|
||||||
|
Returns str repression for Object
|
||||||
|
"""
|
||||||
|
if self.parsed:
|
||||||
|
return ("CountryList( Link = \"{link}\", Revid = \"{revid}\", " +
|
||||||
|
"Interpret = \"{interpret}\", Titel = \"{titel}\", " +
|
||||||
|
"Chartein = \"{chartein}\" )").format(
|
||||||
|
link=repr(self.wikilink),
|
||||||
|
revid=self.revid,
|
||||||
|
interpret=self.interpret,
|
||||||
|
titel=self.titel,
|
||||||
|
chartein=repr(self.chartein))
|
||||||
|
else:
|
||||||
|
return "CountryList( Link = \"{link}\" )".format(
|
||||||
|
link=repr(self.wikilink))
|
||||||
|
|
||||||
|
|
||||||
class CountryListError( Exception ):
|
class CountryListError( Exception ):
|
||||||
"""
|
"""
|
||||||
@@ -422,3 +488,98 @@ class CountryListEntryError( CountryListError ):
|
|||||||
Handles errors occuring in class CountryList related to entrys
|
Handles errors occuring in class CountryList related to entrys
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class CountryListUnitTest():
|
||||||
|
"""
|
||||||
|
Defines Test-Functions for CountryList-Module
|
||||||
|
"""
|
||||||
|
|
||||||
|
testcases = ( { "Link": mwparser.nodes.Wikilink( "Benutzer:JogoBot/Charts/Tests/Liste der Nummer-eins-Hits in Frankreich (2015)" ), # noqa
|
||||||
|
"revid": 148453827,
|
||||||
|
"interpret": "[[Adele (Sängerin)|Adele]]",
|
||||||
|
"titel": "[[Hello (Adele-Lied)|Hello]]",
|
||||||
|
"chartein": datetime( 2015, 10, 23 ) },
|
||||||
|
{ "Link": mwparser.nodes.Wikilink( "Benutzer:JogoBot/Charts/Tests/Liste der Nummer-eins-Hits in Belgien (2015)", "Wallonien"), # noqa
|
||||||
|
"revid": 148455281,
|
||||||
|
"interpret": "[[Nicky Jam]] & [[Enrique Iglesias (Sänger)|Enrique Iglesias]]", # noqa
|
||||||
|
"titel": "El perdón",
|
||||||
|
"chartein": datetime( 2015, 9, 12 ) } )
|
||||||
|
|
||||||
|
def __init__( self, page=None ):
|
||||||
|
"""
|
||||||
|
Constructor
|
||||||
|
Set attribute page
|
||||||
|
"""
|
||||||
|
if page:
|
||||||
|
self.page_link = mwparser.nodes.Wikilink( page )
|
||||||
|
else:
|
||||||
|
self.page_link = None
|
||||||
|
|
||||||
|
def treat( self ):
|
||||||
|
"""
|
||||||
|
Start testing either manually with page provided by cmd-arg page or
|
||||||
|
automatically with predefined test case
|
||||||
|
"""
|
||||||
|
if self.page_link:
|
||||||
|
self.man_test()
|
||||||
|
else:
|
||||||
|
self.auto_test()
|
||||||
|
|
||||||
|
def auto_test( self ):
|
||||||
|
"""
|
||||||
|
Run automatic tests with predefined test data from wiki
|
||||||
|
"""
|
||||||
|
|
||||||
|
for case in type(self).testcases:
|
||||||
|
|
||||||
|
self.countrylist = CountryList( case["Link"] )
|
||||||
|
|
||||||
|
if( self.countrylist.is_parsing_needed( case["revid"] ) or not
|
||||||
|
self.countrylist.is_parsing_needed( case["revid"] + 1 ) ):
|
||||||
|
raise Exception(
|
||||||
|
"CountryList.is_parsing_needed() does not work!" )
|
||||||
|
|
||||||
|
self.countrylist.parse()
|
||||||
|
|
||||||
|
for key in case:
|
||||||
|
|
||||||
|
if key == "Link":
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not case[key] == getattr(self.countrylist, key ):
|
||||||
|
raise Exception( key + " – " + str(
|
||||||
|
getattr(self.countrylist, key ) ))
|
||||||
|
|
||||||
|
def man_test( self ):
|
||||||
|
"""
|
||||||
|
Run manual test with page given in parameter
|
||||||
|
"""
|
||||||
|
self.countrylist = CountryList( self.page_link )
|
||||||
|
|
||||||
|
self.countrylist.parse()
|
||||||
|
|
||||||
|
print( self.countrylist )
|
||||||
|
print( "Since we have no data to compare, you need to manually " +
|
||||||
|
"check data above against given page to ensure correct " +
|
||||||
|
"working of module!" )
|
||||||
|
|
||||||
|
|
||||||
|
def main(*args):
|
||||||
|
"""
|
||||||
|
Handling direct calls --> unittest
|
||||||
|
"""
|
||||||
|
# Process global arguments to determine desired site
|
||||||
|
local_args = pywikibot.handle_args(args)
|
||||||
|
|
||||||
|
# Parse command line arguments
|
||||||
|
for arg in local_args:
|
||||||
|
if arg.startswith("-page:"):
|
||||||
|
page = arg[ len("-page:"): ]
|
||||||
|
|
||||||
|
# Call unittest-class
|
||||||
|
test = CountryListUnitTest( page )
|
||||||
|
test.treat()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|||||||
1
jogobot
Submodule
1
jogobot
Submodule
Submodule jogobot added at 9131235b7b
@@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
# summarypage.py
|
# summarypage.py
|
||||||
#
|
#
|
||||||
# Copyright 2015 GOLDERWEB – Jonathan Golder <jonathan@golderweb.de>
|
# Copyright 2016 Jonathan Golder <jonathan@golderweb.de>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -30,6 +30,8 @@ from datetime import datetime, timedelta
|
|||||||
# import pywikibot
|
# import pywikibot
|
||||||
import mwparserfromhell as mwparser
|
import mwparserfromhell as mwparser
|
||||||
|
|
||||||
|
import jogobot
|
||||||
|
|
||||||
from countrylist import CountryList, CountryListError
|
from countrylist import CountryList, CountryListError
|
||||||
|
|
||||||
|
|
||||||
@@ -145,6 +147,9 @@ class SummaryPageEntry():
|
|||||||
|
|
||||||
# If list is from last year, replace year
|
# If list is from last year, replace year
|
||||||
if (current_year - 1) in self.countrylist_wikilink.title:
|
if (current_year - 1) in self.countrylist_wikilink.title:
|
||||||
|
jogobot.output( "Trying to use new years list for [[{page}]]"
|
||||||
|
.format( page=self.countrylist_wikilink.title ) )
|
||||||
|
|
||||||
self.countrylist_wikilink.title.replace( (current_year - 1),
|
self.countrylist_wikilink.title.replace( (current_year - 1),
|
||||||
current_year )
|
current_year )
|
||||||
|
|
||||||
@@ -159,6 +164,10 @@ class SummaryPageEntry():
|
|||||||
|
|
||||||
# If list is from last year, replace year
|
# If list is from last year, replace year
|
||||||
if (current_year ) in self.countrylist_wikilink.title:
|
if (current_year ) in self.countrylist_wikilink.title:
|
||||||
|
jogobot.output( "New years list for [[{page}]] does not " +
|
||||||
|
"exist, fall back to old list!".format(
|
||||||
|
page=self.countrylist_wikilink.title ) )
|
||||||
|
|
||||||
self.countrylist_wikilink.title.replace( current_year,
|
self.countrylist_wikilink.title.replace( current_year,
|
||||||
(current_year - 1) )
|
(current_year - 1) )
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user