Add unittests #29
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/kothic#29
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "add-unittests"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
kothic
with unittestsf""
stringsHere I'm covering all base classes
Rule
,Condition
,MapCSS
,Eval
,libkomwm.py
with unit-tests to make sure nothing will brake on new changes.Work in progress.
@ -26,3 +26,3 @@
if typez == "regex":
self.regex = re.compile(self.params[0], re.I)
self.regex = re.compile(self.params[1], re.I)
Here I fixed bug with regex conditions:
[natural=~/water.+/]
. Organic Maps never used such conditions in MapCSS styles.Should we remove regex conditions completely from the
kothic
?@ -18,2 +20,4 @@
logger = logging.getLogger('mapcss.Eval')
logger.setLevel(logging.ERROR)
class Eval():
This class is responsible for
eval(...)
expressions in .mapcss files. But Organic Maps never used evals in styles.Should we remove eval completely from the project?
Looks like order of lines in
types.txt
matters. And we addmapswithme
lines for missing types.Is it correct?
@ -18,2 +20,4 @@
logger = logging.getLogger('mapcss.Eval')
logger.setLevel(logging.ERROR)
class Eval():
Context:
I think remove it!
Yeap order is important and is the same as type's ID
we specify colors in *.mapcss via hex notation, aren't we?
though other notations are supported also, e.g.
color: red;
maybe
visibility.txt
is not needed at all... it seems to be used to cache visibility values so that its faster to load by core, but maybe its as fast to get them from protobuf style files which are loaded anyway;classificator.txt
is also used to speed up loading of types hierarchy, but maybe it could be derived from types names as fast..it'd better to drop this superfluous syntax altogether, please see a discussion in https://github.com/organicmaps/organicmaps/issues/4137#issuecomment-1403638671
but there are some tricky cases that rely on the current unobvious inheritance behavior of area/line/etc - needs to be fixed in mapcss files
As discussed in the chat there are many things that need to be conceptually improved here which means behavior changes and mapcss syntax changes etc., not just technical refactoring for the sake of readability etc. So I'd be reluctant to spend more time on technical perfection of the code now (some cosmetic changes are fine), as the code is likely to change a lot.
But removing of unused code (evals, regex conditions, etc.) is good!
@ -0,0 +240,4 @@
self.assertFalse(cond.test({"tunnel": "yes"}))
def test_parser_invTrue(self):
""" Test conditions in format [!some_tag?] It works the same way as [some_tag != yes]
we use either [some_tag?] (which means any value except
no
)or [!some_tag] which means absence or =no
[!some_tag?] is very strange :)
The unit tests look good at a glance!
(with a gotcha that some of them would be obsolete after migration of *.mapcss to internal OM types instead of pseudo-tags)
@ -0,0 +278,4 @@
self.assertFalse(cond.test({"bridge": "maybe"}))
def test_untrue(self):
""" parseCondition(...) doesn't support this type of condition.
I don't see any use for it.
Re integration tests. Prob a proper full integration test should contain resulting .bin and .txt files to compare with?
Ok, removed TODO comment
@ -0,0 +240,4 @@
self.assertFalse(cond.test({"tunnel": "yes"}))
def test_parser_invTrue(self):
""" Test conditions in format [!some_tag?] It works the same way as [some_tag != yes]
I mentioned in comment that this type of conditions is never used in OrganicMaps styles. Another candidate for removal.
@ -0,0 +278,4 @@
self.assertFalse(cond.test({"bridge": "maybe"}))
def test_untrue(self):
""" parseCondition(...) doesn't support this type of condition.
Another candidate for removal.
@pastk previously I had full copy of
organicmaps/data/styles/default/light
style (with simplified directories structure). I removed that redundant copy and left onlytests/assets/case-2-generate-drules-mini
with subset of styles. It contains only highways, has 148 types, zoom levels 0-10 and generates only 40 drules. We even can check generated output by hand.I don't think it makes sense to run full drules generation for all 6 styles to verify output against some reference, because styles in main repo are changed irregularly, so refence data should be changed too.
I think we should refactor existing code to break
libkomwm.py
in smaller parts in order to understand which parts we are going to remove completly and which parts should be improved (e.g. MapCSS parsing, generation of types.txt, colors.txt, etc. should stay).Maybe I can finish my internal OM types migration PR first then? Let me check its status first and I'll come back with some estimate..
Is it ready for review? Not draft anymore?
@ -26,3 +26,3 @@
if typez == "regex":
self.regex = re.compile(self.params[0], re.I)
self.regex = re.compile(self.params[1], re.I)
yeap there is no need for them
@strump could you comment here please?
It seems to me that
color = whatever_to_hex()
is used here in case a color isn't defined in hex format already, its not necessary float.Maybe its redundant to require the mapcss.webcolors lib indeed. We use hex notation almost everywhere in styles. Sometimes could be useful to e.g. use simple names like red, green, etc. But not necessary.
There are some warnings when running tests, e.g.
also consider making
full_drules_gen.py
executable and add a shebangadd a trailing newline please
Updated README.md
Added newline
@pastk I fixed un-closed files in multiple places. This should fix
ResourceWarning: unclosed file
in the log.Could you please update the actual command to
python3 full_drules_gen.py -d ../../../data -o drules --txt
too?99% of cases the
/path/to/organicmaps/data
would be fixed as kothic is intools/kothic/
Squash commits into one / a few and its good I think!
Ok, changed path
@pastk I squashed history to 2 commits.
Awesome, LGTM!