Merge pull request #11616 from ethereum/issue-8191-yul

Test yul code blocks in documentation.
This commit is contained in:
chriseth
2021-07-08 15:37:01 +02:00
committed by GitHub
8 changed files with 236 additions and 82 deletions
+1 -1
View File
@@ -364,7 +364,7 @@ SOLTMPDIR=$(mktemp -d)
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/docs/
developmentVersion=$("$REPO_ROOT/scripts/get_version.sh")
for f in *.sol
for f in *.yul *.sol
do
# The contributors guide uses syntax tests, but we cannot
# really handle them here.
+22
View File
@@ -20,3 +20,25 @@ Some text
contract C {}
More text.
.. code-block:: yul
let x := add(1, 5)
.. code-block:: yul
// Yul code wrapped in object
{
{
let y := mul(3, 5)
}
}
.. code-block:: yul
// Yul code wrapped in named object
object "Test" {
{
let y := mul(6, 9)
}
}
@@ -46,3 +46,26 @@ Sphinx does not complain about these.
contract E {}
More text.
.. code-block:: yul
:force:
let x := add(1, 5)
.. code-block:: yul
:linenos:
:language: Yul
// Yul code wrapped in object
{
let y := mul(3, 5)
}
.. code-block:: yul
// Yul code wrapped in named object
object "Test" {
let y := mul(3, 5)
:linenos:
}
+91 -33
View File
@@ -2,61 +2,119 @@
import unittest
from textwrap import dedent, indent
from unittest_helpers import FIXTURE_DIR, load_fixture
# NOTE: This test file file only works with scripts/ added to PYTHONPATH so pylint can't find the imports
# pragma pylint: disable=import-error
from isolate_tests import extract_docs_cases
from isolate_tests import extract_solidity_docs_cases, extract_yul_docs_cases
# pragma pylint: enable=import-error
CODE_BLOCK_RST_PATH = FIXTURE_DIR / 'code_block.rst'
CODE_BLOCK_RST_CONTENT = load_fixture(CODE_BLOCK_RST_PATH)
CODE_BLOCK_WITH_DIRECTIVES_RST_PATH = FIXTURE_DIR / 'code_block_with_directives.rst'
CODE_BLOCK_WITH_DIRECTIVES_RST_CONTENT = load_fixture(CODE_BLOCK_WITH_DIRECTIVES_RST_PATH)
def formatCase(text):
"""Formats code to contain only one indentation and terminate with a \n"""
return indent(dedent(text.lstrip("\n")), " ") + "\n"
class TestExtractDocsCases(unittest.TestCase):
def setUp(self):
self.maxDiff = 10000
def test_solidity_block(self):
expected_cases = [
" // SPDX-License-Identifier: GPL-3.0\n"
" pragma solidity >=0.7.0 <0.9.0;\n"
"\n"
" contract C {\n"
" function foo() public view {}\n"
" }\n"
"\n"
"\n",
expected_cases = [formatCase(case) for case in [
"""
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
" contract C {}\n"
"\n",
]
contract C {
function foo() public view {}
}
self.assertEqual(extract_docs_cases(CODE_BLOCK_RST_PATH), expected_cases)
""",
"""
contract C {}
""",
]]
self.assertEqual(extract_solidity_docs_cases(CODE_BLOCK_RST_PATH), expected_cases)
def test_solidity_block_with_directives(self):
expected_cases = [
" // SPDX-License-Identifier: GPL-3.0\n"
" pragma solidity >=0.7.0 <0.9.0;\n"
"\n"
" contract C {\n"
" function foo() public view {}\n"
" }\n"
"\n"
"\n",
expected_cases = [formatCase(case) for case in [
"""
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
" contract C {}\n"
"\n",
contract C {
function foo() public view {}
}
" contract D {}\n"
" :linenos:\n"
"\n",
""",
"""
contract C {}
""",
"""
contract D {}
:linenos:
""",
"""
contract E {}
""",
]]
" contract E {}\n"
"\n",
]
self.assertEqual(extract_solidity_docs_cases(CODE_BLOCK_WITH_DIRECTIVES_RST_PATH), expected_cases)
self.assertEqual(extract_docs_cases(CODE_BLOCK_WITH_DIRECTIVES_RST_PATH), expected_cases)
def test_yul_block(self):
expected_cases = [formatCase(case) for case in [
"""
{
let x := add(1, 5)
}
""",
"""
// Yul code wrapped in object
{
{
let y := mul(3, 5)
}
}
""",
"""
// Yul code wrapped in named object
object "Test" {
{
let y := mul(6, 9)
}
}
""",
]]
self.assertEqual(extract_yul_docs_cases(CODE_BLOCK_RST_PATH), expected_cases)
def test_yul_block_with_directives(self):
expected_cases = [formatCase(case) for case in [
"""
{
let x := add(1, 5)
}
""",
"""
// Yul code wrapped in object
{
let y := mul(3, 5)
}
""",
"""
// Yul code wrapped in named object
object "Test" {
let y := mul(3, 5)
:linenos:
}
""",
]]
self.assertEqual(extract_yul_docs_cases(CODE_BLOCK_WITH_DIRECTIVES_RST_PATH), expected_cases)