12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250 |
- # Copyright (c) Twisted Matrix Laboratories.
- # See LICENSE for details.
- """
- Tests for L{twisted.python.release} and L{twisted.python._release}.
- All of these tests are skipped on platforms other than Linux, as the release is
- only ever performed on Linux.
- """
- from __future__ import print_function
- import glob
- import functools
- import operator
- import os
- import sys
- import textwrap
- import tempfile
- import shutil
- from io import BytesIO as StringIO
- from twisted.trial.unittest import TestCase, FailTest, SkipTest
- from twisted.python.procutils import which
- from twisted.python import release
- from twisted.python.filepath import FilePath
- from incremental import Version
- from subprocess import CalledProcessError
- from twisted.python._release import (
- findTwistedProjects, replaceInFile, Project, filePathDelta,
- APIBuilder, BuildAPIDocsScript, CheckTopfileScript,
- runCommand, NotWorkingDirectory, SphinxBuilder,
- GitCommand, getRepositoryCommand, IVCSCommand)
- if os.name != 'posix':
- skip = "Release toolchain only supported on POSIX."
- else:
- skip = None
- testingSphinxConf = "master_doc = 'index'\n"
- try:
- import pydoctor.driver
- # it might not be installed, or it might use syntax not available in
- # this version of Python.
- except (ImportError, SyntaxError):
- pydoctorSkip = "Pydoctor is not present."
- else:
- if getattr(pydoctor, "version_info", (0,)) < (0, 1):
- pydoctorSkip = "Pydoctor is too old."
- else:
- pydoctorSkip = skip
- if not skip and which("sphinx-build"):
- sphinxSkip = None
- else:
- sphinxSkip = "Sphinx not available."
- if not skip and which("git"):
- gitVersion = runCommand(["git", "--version"]).split(" ")[2].split(".")
- # We want git 2.0 or above.
- if int(gitVersion[0]) >= 2:
- gitSkip = skip
- else:
- gitSkip = "old git is present"
- else:
- gitSkip = "git is not present."
- class ExternalTempdirTestCase(TestCase):
- """
- A test case which has mkdir make directories outside of the usual spot, so
- that Git commands don't interfere with the Twisted checkout.
- """
- def mktemp(self):
- """
- Make our own directory.
- """
- newDir = tempfile.mkdtemp(dir="/tmp/")
- self.addCleanup(shutil.rmtree, newDir)
- return newDir
- def _gitConfig(path):
- """
- Set some config in the repo that Git requires to make commits. This isn't
- needed in real usage, just for tests.
- @param path: The path to the Git repository.
- @type path: L{FilePath}
- """
- runCommand(["git", "config",
- "--file", path.child(".git").child("config").path,
- "user.name", '"someone"'])
- runCommand(["git", "config",
- "--file", path.child(".git").child("config").path,
- "user.email", '"someone@someplace.com"'])
- def _gitInit(path):
- """
- Run a git init, and set some config that git requires. This isn't needed in
- real usage.
- @param path: The path to where the Git repo will be created.
- @type path: L{FilePath}
- """
- runCommand(["git", "init", path.path])
- _gitConfig(path)
- def genVersion(*args, **kwargs):
- """
- A convenience for generating _version.py data.
- @param args: Arguments to pass to L{Version}.
- @param kwargs: Keyword arguments to pass to L{Version}.
- """
- return ("from incremental import Version\n__version__=%r" % (
- Version(*args, **kwargs))).encode('ascii')
- class StructureAssertingMixin(object):
- """
- A mixin for L{TestCase} subclasses which provides some methods for
- asserting the structure and contents of directories and files on the
- filesystem.
- """
- def createStructure(self, root, dirDict):
- """
- Create a set of directories and files given a dict defining their
- structure.
- @param root: The directory in which to create the structure. It must
- already exist.
- @type root: L{FilePath}
- @param dirDict: The dict defining the structure. Keys should be strings
- naming files, values should be strings describing file contents OR
- dicts describing subdirectories. All files are written in binary
- mode. Any string values are assumed to describe text files and
- will have their newlines replaced with the platform-native newline
- convention. For example::
- {"foofile": "foocontents",
- "bardir": {"barfile": "bar\ncontents"}}
- @type dirDict: C{dict}
- """
- for x in dirDict:
- child = root.child(x)
- if isinstance(dirDict[x], dict):
- child.createDirectory()
- self.createStructure(child, dirDict[x])
- else:
- child.setContent(dirDict[x].replace('\n', os.linesep))
- def assertStructure(self, root, dirDict):
- """
- Assert that a directory is equivalent to one described by a dict.
- @param root: The filesystem directory to compare.
- @type root: L{FilePath}
- @param dirDict: The dict that should describe the contents of the
- directory. It should be the same structure as the C{dirDict}
- parameter to L{createStructure}.
- @type dirDict: C{dict}
- """
- children = [each.basename() for each in root.children()]
- for pathSegment, expectation in dirDict.items():
- child = root.child(pathSegment)
- if callable(expectation):
- self.assertTrue(expectation(child))
- elif isinstance(expectation, dict):
- self.assertTrue(child.isdir(), "%s is not a dir!"
- % (child.path,))
- self.assertStructure(child, expectation)
- else:
- actual = child.getContent().replace(os.linesep, '\n')
- self.assertEqual(actual, expectation)
- children.remove(pathSegment)
- if children:
- self.fail("There were extra children in %s: %s"
- % (root.path, children))
- class ProjectTests(ExternalTempdirTestCase):
- """
- There is a first-class representation of a project.
- """
- def assertProjectsEqual(self, observedProjects, expectedProjects):
- """
- Assert that two lists of L{Project}s are equal.
- """
- self.assertEqual(len(observedProjects), len(expectedProjects))
- observedProjects = sorted(observedProjects,
- key=operator.attrgetter('directory'))
- expectedProjects = sorted(expectedProjects,
- key=operator.attrgetter('directory'))
- for observed, expected in zip(observedProjects, expectedProjects):
- self.assertEqual(observed.directory, expected.directory)
- def makeProject(self, version, baseDirectory=None):
- """
- Make a Twisted-style project in the given base directory.
- @param baseDirectory: The directory to create files in
- (as a L{FilePath).
- @param version: The version information for the project.
- @return: L{Project} pointing to the created project.
- """
- if baseDirectory is None:
- baseDirectory = FilePath(self.mktemp())
- segments = version[0].split('.')
- directory = baseDirectory
- for segment in segments:
- directory = directory.child(segment)
- if not directory.exists():
- directory.createDirectory()
- directory.child('__init__.py').setContent('')
- directory.child('topfiles').createDirectory()
- directory.child('_version.py').setContent(genVersion(*version))
- return Project(directory)
- def makeProjects(self, *versions):
- """
- Create a series of projects underneath a temporary base directory.
- @return: A L{FilePath} for the base directory.
- """
- baseDirectory = FilePath(self.mktemp())
- for version in versions:
- self.makeProject(version, baseDirectory)
- return baseDirectory
- def test_getVersion(self):
- """
- Project objects know their version.
- """
- version = ('twisted', 2, 1, 0)
- project = self.makeProject(version)
- self.assertEqual(project.getVersion(), Version(*version))
- def test_repr(self):
- """
- The representation of a Project is Project(directory).
- """
- foo = Project(FilePath('bar'))
- self.assertEqual(
- repr(foo), 'Project(%r)' % (foo.directory))
- def test_findTwistedStyleProjects(self):
- """
- findTwistedStyleProjects finds all projects underneath a particular
- directory. A 'project' is defined by the existence of a 'topfiles'
- directory and is returned as a Project object.
- """
- baseDirectory = self.makeProjects(
- ('foo', 2, 3, 0), ('foo.bar', 0, 7, 4))
- projects = findTwistedProjects(baseDirectory)
- self.assertProjectsEqual(
- projects,
- [Project(baseDirectory.child('foo')),
- Project(baseDirectory.child('foo').child('bar'))])
- class UtilityTests(ExternalTempdirTestCase):
- """
- Tests for various utility functions for releasing.
- """
- def test_chdir(self):
- """
- Test that the runChdirSafe is actually safe, i.e., it still
- changes back to the original directory even if an error is
- raised.
- """
- cwd = os.getcwd()
- def chAndBreak():
- os.mkdir('releaseCh')
- os.chdir('releaseCh')
- 1 // 0
- self.assertRaises(ZeroDivisionError,
- release.runChdirSafe, chAndBreak)
- self.assertEqual(cwd, os.getcwd())
- def test_replaceInFile(self):
- """
- L{replaceInFile} replaces data in a file based on a dict. A key from
- the dict that is found in the file is replaced with the corresponding
- value.
- """
- content = 'foo\nhey hey $VER\nbar\n'
- with open('release.replace', 'w') as outf:
- outf.write(content)
- expected = content.replace('$VER', '2.0.0')
- replaceInFile('release.replace', {'$VER': '2.0.0'})
- with open('release.replace') as f:
- self.assertEqual(f.read(), expected)
- expected = expected.replace('2.0.0', '3.0.0')
- replaceInFile('release.replace', {'2.0.0': '3.0.0'})
- with open('release.replace') as f:
- self.assertEqual(f.read(), expected)
- def doNotFailOnNetworkError(func):
- """
- A decorator which makes APIBuilder tests not fail because of intermittent
- network failures -- mamely, APIBuilder being unable to get the "object
- inventory" of other projects.
- @param func: The function to decorate.
- @return: A decorated function which won't fail if the object inventory
- fetching fails.
- """
- @functools.wraps(func)
- def wrapper(*a, **kw):
- try:
- func(*a, **kw)
- except FailTest as e:
- if e.args[0].startswith("'Failed to get object inventory from "):
- raise SkipTest(
- ("This test is prone to intermittent network errors. "
- "See ticket 8753. Exception was: {!r}").format(e))
- raise
- return wrapper
- class DoNotFailTests(TestCase):
- """
- Tests for L{doNotFailOnNetworkError}.
- """
- def test_skipsOnAssertionError(self):
- """
- When the test raises L{FailTest} and the assertion failure starts with
- "'Failed to get object inventory from ", the test will be skipped
- instead.
- """
- @doNotFailOnNetworkError
- def inner():
- self.assertEqual("Failed to get object inventory from blah", "")
- try:
- inner()
- except Exception as e:
- self.assertIsInstance(e, SkipTest)
- def test_doesNotSkipOnDifferentError(self):
- """
- If there is a L{FailTest} that is not the intersphinx fetching error,
- it will be passed through.
- """
- @doNotFailOnNetworkError
- def inner():
- self.assertEqual("Error!!!!", "")
- try:
- inner()
- except Exception as e:
- self.assertIsInstance(e, FailTest)
- class APIBuilderTests(ExternalTempdirTestCase):
- """
- Tests for L{APIBuilder}.
- """
- skip = pydoctorSkip
- @doNotFailOnNetworkError
- def test_build(self):
- """
- L{APIBuilder.build} writes an index file which includes the name of the
- project specified.
- """
- stdout = StringIO()
- self.patch(sys, 'stdout', stdout)
- projectName = "Foobar"
- packageName = "quux"
- projectURL = "scheme:project"
- sourceURL = "scheme:source"
- docstring = "text in docstring"
- privateDocstring = "should also appear in output"
- inputPath = FilePath(self.mktemp()).child(packageName)
- inputPath.makedirs()
- inputPath.child("__init__.py").setContent(
- "def foo():\n"
- " '%s'\n"
- "def _bar():\n"
- " '%s'" % (docstring, privateDocstring))
- outputPath = FilePath(self.mktemp())
- builder = APIBuilder()
- builder.build(projectName, projectURL, sourceURL, inputPath,
- outputPath)
- indexPath = outputPath.child("index.html")
- self.assertTrue(
- indexPath.exists(),
- "API index %r did not exist." % (outputPath.path,))
- self.assertIn(
- '<a href="%s">%s</a>' % (projectURL, projectName),
- indexPath.getContent(),
- "Project name/location not in file contents.")
- quuxPath = outputPath.child("quux.html")
- self.assertTrue(
- quuxPath.exists(),
- "Package documentation file %r did not exist." % (quuxPath.path,))
- self.assertIn(
- docstring, quuxPath.getContent(),
- "Docstring not in package documentation file.")
- self.assertIn(
- '<a href="%s/%s">View Source</a>' % (sourceURL, packageName),
- quuxPath.getContent())
- self.assertIn(
- '<a class="functionSourceLink" href="%s/%s/__init__.py#L1">' % (
- sourceURL, packageName),
- quuxPath.getContent())
- self.assertIn(privateDocstring, quuxPath.getContent())
- # There should also be a page for the foo function in quux.
- self.assertTrue(quuxPath.sibling('quux.foo.html').exists())
- self.assertEqual(stdout.getvalue(), '')
- @doNotFailOnNetworkError
- def test_buildWithPolicy(self):
- """
- L{BuildAPIDocsScript.buildAPIDocs} builds the API docs with values
- appropriate for the Twisted project.
- """
- stdout = StringIO()
- self.patch(sys, 'stdout', stdout)
- docstring = "text in docstring"
- projectRoot = FilePath(self.mktemp())
- packagePath = projectRoot.child("twisted")
- packagePath.makedirs()
- packagePath.child("__init__.py").setContent(
- "def foo():\n"
- " '%s'\n" % (docstring,))
- packagePath.child("_version.py").setContent(
- genVersion("twisted", 1, 0, 0))
- outputPath = FilePath(self.mktemp())
- script = BuildAPIDocsScript()
- script.buildAPIDocs(projectRoot, outputPath)
- indexPath = outputPath.child("index.html")
- self.assertTrue(
- indexPath.exists(),
- "API index %r did not exist." % (outputPath.path,))
- self.assertIn(
- '<a href="http://twistedmatrix.com/">Twisted</a>',
- indexPath.getContent(),
- "Project name/location not in file contents.")
- twistedPath = outputPath.child("twisted.html")
- self.assertTrue(
- twistedPath.exists(),
- "Package documentation file %r did not exist."
- % (twistedPath.path,))
- self.assertIn(
- docstring, twistedPath.getContent(),
- "Docstring not in package documentation file.")
- #Here we check that it figured out the correct version based on the
- #source code.
- self.assertIn(
- '<a href="https://github.com/twisted/twisted/tree/'
- 'twisted-1.0.0/src/twisted">View Source</a>',
- twistedPath.getContent())
- self.assertEqual(stdout.getvalue(), '')
- @doNotFailOnNetworkError
- def test_buildWithDeprecated(self):
- """
- The templates and System for Twisted includes adding deprecations.
- """
- stdout = StringIO()
- self.patch(sys, 'stdout', stdout)
- projectName = "Foobar"
- packageName = "quux"
- projectURL = "scheme:project"
- sourceURL = "scheme:source"
- docstring = "text in docstring"
- privateDocstring = "should also appear in output"
- inputPath = FilePath(self.mktemp()).child(packageName)
- inputPath.makedirs()
- inputPath.child("__init__.py").setContent(
- "from twisted.python.deprecate import deprecated\n"
- "from incremental import Version\n"
- "@deprecated(Version('Twisted', 15, 0, 0), "
- "'Baz')\n"
- "def foo():\n"
- " '%s'\n"
- "from twisted.python import deprecate\n"
- "import incremental\n"
- "@deprecate.deprecated(incremental.Version('Twisted', 16, 0, 0))\n"
- "def _bar():\n"
- " '%s'\n"
- "@deprecated(Version('Twisted', 14, 2, 3), replacement='stuff')\n"
- "class Baz(object):\n"
- " pass"
- "" % (docstring, privateDocstring))
- outputPath = FilePath(self.mktemp())
- builder = APIBuilder()
- builder.build(projectName, projectURL, sourceURL, inputPath,
- outputPath)
- quuxPath = outputPath.child("quux.html")
- self.assertTrue(
- quuxPath.exists(),
- "Package documentation file %r did not exist." % (quuxPath.path,))
- self.assertIn(
- docstring, quuxPath.getContent(),
- "Docstring not in package documentation file.")
- self.assertIn(
- 'foo was deprecated in Twisted 15.0.0; please use Baz instead.',
- quuxPath.getContent())
- self.assertIn(
- '_bar was deprecated in Twisted 16.0.0.',
- quuxPath.getContent())
- self.assertIn(privateDocstring, quuxPath.getContent())
- # There should also be a page for the foo function in quux.
- self.assertTrue(quuxPath.sibling('quux.foo.html').exists())
- self.assertIn(
- 'foo was deprecated in Twisted 15.0.0; please use Baz instead.',
- quuxPath.sibling('quux.foo.html').getContent())
- self.assertIn(
- 'Baz was deprecated in Twisted 14.2.3; please use stuff instead.',
- quuxPath.sibling('quux.Baz.html').getContent())
- self.assertEqual(stdout.getvalue(), '')
- def test_apiBuilderScriptMainRequiresTwoArguments(self):
- """
- SystemExit is raised when the incorrect number of command line
- arguments are passed to the API building script.
- """
- script = BuildAPIDocsScript()
- self.assertRaises(SystemExit, script.main, [])
- self.assertRaises(SystemExit, script.main, ["foo"])
- self.assertRaises(SystemExit, script.main, ["foo", "bar", "baz"])
- def test_apiBuilderScriptMain(self):
- """
- The API building script invokes the same code that
- L{test_buildWithPolicy} tests.
- """
- script = BuildAPIDocsScript()
- calls = []
- script.buildAPIDocs = lambda a, b: calls.append((a, b))
- script.main(["hello", "there"])
- self.assertEqual(calls, [(FilePath("hello"), FilePath("there"))])
- class FilePathDeltaTests(TestCase):
- """
- Tests for L{filePathDelta}.
- """
- def test_filePathDeltaSubdir(self):
- """
- L{filePathDelta} can create a simple relative path to a child path.
- """
- self.assertEqual(filePathDelta(FilePath("/foo/bar"),
- FilePath("/foo/bar/baz")),
- ["baz"])
- def test_filePathDeltaSiblingDir(self):
- """
- L{filePathDelta} can traverse upwards to create relative paths to
- siblings.
- """
- self.assertEqual(filePathDelta(FilePath("/foo/bar"),
- FilePath("/foo/baz")),
- ["..", "baz"])
- def test_filePathNoCommonElements(self):
- """
- L{filePathDelta} can create relative paths to totally unrelated paths
- for maximum portability.
- """
- self.assertEqual(filePathDelta(FilePath("/foo/bar"),
- FilePath("/baz/quux")),
- ["..", "..", "baz", "quux"])
- def test_filePathDeltaSimilarEndElements(self):
- """
- L{filePathDelta} doesn't take into account final elements when
- comparing 2 paths, but stops at the first difference.
- """
- self.assertEqual(filePathDelta(FilePath("/foo/bar/bar/spam"),
- FilePath("/foo/bar/baz/spam")),
- ["..", "..", "baz", "spam"])
- class SphinxBuilderTests(TestCase):
- """
- Tests for L{SphinxBuilder}.
- @note: This test case depends on twisted.web, which violates the standard
- Twisted practice of not having anything in twisted.python depend on
- other Twisted packages and opens up the possibility of creating
- circular dependencies. Do not use this as an example of how to
- structure your dependencies.
- @ivar builder: A plain L{SphinxBuilder}.
- @ivar sphinxDir: A L{FilePath} representing a directory to be used for
- containing a Sphinx project.
- @ivar sourceDir: A L{FilePath} representing a directory to be used for
- containing the source files for a Sphinx project.
- """
- skip = sphinxSkip
- confContent = """\
- source_suffix = '.rst'
- master_doc = 'index'
- """
- confContent = textwrap.dedent(confContent)
- indexContent = """\
- ==============
- This is a Test
- ==============
- This is only a test
- -------------------
- In case you hadn't figured it out yet, this is a test.
- """
- indexContent = textwrap.dedent(indexContent)
- def setUp(self):
- """
- Set up a few instance variables that will be useful.
- """
- self.builder = SphinxBuilder()
- # set up a place for a fake sphinx project
- self.twistedRootDir = FilePath(self.mktemp())
- self.sphinxDir = self.twistedRootDir.child("docs")
- self.sphinxDir.makedirs()
- self.sourceDir = self.sphinxDir
- def createFakeSphinxProject(self):
- """
- Create a fake Sphinx project for test purposes.
- Creates a fake Sphinx project with the absolute minimum of source
- files. This includes a single source file ('index.rst') and the
- smallest 'conf.py' file possible in order to find that source file.
- """
- self.sourceDir.child("conf.py").setContent(self.confContent)
- self.sourceDir.child("index.rst").setContent(self.indexContent)
- def verifyFileExists(self, fileDir, fileName):
- """
- Helper which verifies that C{fileName} exists in C{fileDir} and it has
- some content.
- @param fileDir: A path to a directory.
- @type fileDir: L{FilePath}
- @param fileName: The last path segment of a file which may exist within
- C{fileDir}.
- @type fileName: L{str}
- @raise: L{FailTest <twisted.trial.unittest.FailTest>} if
- C{fileDir.child(fileName)}:
- 1. Does not exist.
- 2. Is empty.
- 3. In the case where it's a path to a C{.html} file, the
- content looks like an HTML file.
- @return: L{None}
- """
- # check that file exists
- fpath = fileDir.child(fileName)
- self.assertTrue(fpath.exists())
- # check that the output files have some content
- fcontents = fpath.getContent()
- self.assertTrue(len(fcontents) > 0)
- # check that the html files are at least html-ish
- # this is not a terribly rigorous check
- if fpath.path.endswith('.html'):
- self.assertIn("<body", fcontents)
- def test_build(self):
- """
- Creates and builds a fake Sphinx project using a L{SphinxBuilder}.
- """
- self.createFakeSphinxProject()
- self.builder.build(self.sphinxDir)
- self.verifyBuilt()
- def test_main(self):
- """
- Creates and builds a fake Sphinx project as if via the command line.
- """
- self.createFakeSphinxProject()
- self.builder.main([self.sphinxDir.parent().path])
- self.verifyBuilt()
- def test_warningsAreErrors(self):
- """
- Creates and builds a fake Sphinx project as if via the command line,
- failing if there are any warnings.
- """
- output = StringIO()
- self.patch(sys, "stdout", output)
- self.createFakeSphinxProject()
- with self.sphinxDir.child("index.rst").open("a") as f:
- f.write("\n.. _malformed-link-target\n")
- exception = self.assertRaises(
- SystemExit,
- self.builder.main, [self.sphinxDir.parent().path]
- )
- self.assertEqual(exception.code, 1)
- self.assertIn("malformed hyperlink target", output.getvalue())
- self.verifyBuilt()
- def verifyBuilt(self):
- """
- Verify that a sphinx project has been built.
- """
- htmlDir = self.sphinxDir.sibling('doc')
- self.assertTrue(htmlDir.isdir())
- doctreeDir = htmlDir.child("doctrees")
- self.assertFalse(doctreeDir.exists())
- self.verifyFileExists(htmlDir, 'index.html')
- self.verifyFileExists(htmlDir, 'genindex.html')
- self.verifyFileExists(htmlDir, 'objects.inv')
- self.verifyFileExists(htmlDir, 'search.html')
- self.verifyFileExists(htmlDir, 'searchindex.js')
- def test_failToBuild(self):
- """
- Check that SphinxBuilder.build fails when run against a non-sphinx
- directory.
- """
- # note no fake sphinx project is created
- self.assertRaises(CalledProcessError,
- self.builder.build,
- self.sphinxDir)
- class CommandsTestMixin(StructureAssertingMixin):
- """
- Test mixin for the VCS commands used by the release scripts.
- """
- def setUp(self):
- self.tmpDir = FilePath(self.mktemp())
- def test_ensureIsWorkingDirectoryWithWorkingDirectory(self):
- """
- Calling the C{ensureIsWorkingDirectory} VCS command's method on a valid
- working directory doesn't produce any error.
- """
- reposDir = self.makeRepository(self.tmpDir)
- self.assertIsNone(
- self.createCommand.ensureIsWorkingDirectory(reposDir))
- def test_ensureIsWorkingDirectoryWithNonWorkingDirectory(self):
- """
- Calling the C{ensureIsWorkingDirectory} VCS command's method on an
- invalid working directory raises a L{NotWorkingDirectory} exception.
- """
- self.assertRaises(NotWorkingDirectory,
- self.createCommand.ensureIsWorkingDirectory,
- self.tmpDir)
- def test_statusClean(self):
- """
- Calling the C{isStatusClean} VCS command's method on a repository with
- no pending modifications returns C{True}.
- """
- reposDir = self.makeRepository(self.tmpDir)
- self.assertTrue(self.createCommand.isStatusClean(reposDir))
- def test_statusNotClean(self):
- """
- Calling the C{isStatusClean} VCS command's method on a repository with
- no pending modifications returns C{False}.
- """
- reposDir = self.makeRepository(self.tmpDir)
- reposDir.child('some-file').setContent("something")
- self.assertFalse(self.createCommand.isStatusClean(reposDir))
- def test_remove(self):
- """
- Calling the C{remove} VCS command's method remove the specified path
- from the directory.
- """
- reposDir = self.makeRepository(self.tmpDir)
- testFile = reposDir.child('some-file')
- testFile.setContent("something")
- self.commitRepository(reposDir)
- self.assertTrue(testFile.exists())
- self.createCommand.remove(testFile)
- testFile.restat(False) # Refresh the file information
- self.assertFalse(testFile.exists(), "File still exists")
- def test_export(self):
- """
- The C{exportTo} VCS command's method export the content of the
- repository as identical in a specified directory.
- """
- structure = {
- "README.rst": "Hi this is 1.0.0.",
- "twisted": {
- "topfiles": {
- "README": "Hi this is 1.0.0"},
- "_version.py": genVersion("twisted", 1, 0, 0),
- "web": {
- "topfiles": {
- "README": "Hi this is 1.0.0"},
- "_version.py": genVersion("twisted.web", 1, 0, 0)}}}
- reposDir = self.makeRepository(self.tmpDir)
- self.createStructure(reposDir, structure)
- self.commitRepository(reposDir)
- exportDir = FilePath(self.mktemp()).child("export")
- self.createCommand.exportTo(reposDir, exportDir)
- self.assertStructure(exportDir, structure)
- class GitCommandTest(CommandsTestMixin, ExternalTempdirTestCase):
- """
- Specific L{CommandsTestMixin} related to Git repositories through
- L{GitCommand}.
- """
- createCommand = GitCommand
- skip = gitSkip
- def makeRepository(self, root):
- """
- Create a Git repository in the specified path.
- @type root: L{FilePath}
- @params root: The directory to create the Git repository into.
- @return: The path to the repository just created.
- @rtype: L{FilePath}
- """
- _gitInit(root)
- return root
- def commitRepository(self, repository):
- """
- Add and commit all the files from the Git repository specified.
- @type repository: L{FilePath}
- @params repository: The Git repository to commit into.
- """
- runCommand(["git", "-C", repository.path, "add"] +
- glob.glob(repository.path + "/*"))
- runCommand(["git", "-C", repository.path, "commit", "-m", "hop"])
- class RepositoryCommandDetectionTest(ExternalTempdirTestCase):
- """
- Test the L{getRepositoryCommand} to access the right set of VCS commands
- depending on the repository manipulated.
- """
- skip = gitSkip
- def setUp(self):
- self.repos = FilePath(self.mktemp())
- def test_git(self):
- """
- L{getRepositoryCommand} from a Git repository returns L{GitCommand}.
- """
- _gitInit(self.repos)
- cmd = getRepositoryCommand(self.repos)
- self.assertIs(cmd, GitCommand)
- def test_unknownRepository(self):
- """
- L{getRepositoryCommand} from a directory which doesn't look like a Git
- repository produces a L{NotWorkingDirectory} exception.
- """
- self.assertRaises(NotWorkingDirectory, getRepositoryCommand,
- self.repos)
- class VCSCommandInterfaceTests(TestCase):
- """
- Test that the VCS command classes implement their interface.
- """
- def test_git(self):
- """
- L{GitCommand} implements L{IVCSCommand}.
- """
- self.assertTrue(IVCSCommand.implementedBy(GitCommand))
- class CheckTopfileScriptTests(ExternalTempdirTestCase):
- """
- Tests for L{CheckTopfileScript}.
- """
- skip = gitSkip
- def setUp(self):
- self.origin = FilePath(self.mktemp())
- _gitInit(self.origin)
- runCommand(["git", "checkout", "-b", "trunk"],
- cwd=self.origin.path)
- self.origin.child("test").setContent(b"test!")
- runCommand(["git", "add", self.origin.child("test").path],
- cwd=self.origin.path)
- runCommand(["git", "commit", "-m", "initial"],
- cwd=self.origin.path)
- self.repo = FilePath(self.mktemp())
- runCommand(["git", "clone", self.origin.path, self.repo.path])
- _gitConfig(self.repo)
- def test_noArgs(self):
- """
- Too few arguments returns a failure.
- """
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([])
- self.assertEqual(e.exception.args,
- ("Must specify one argument: the Twisted checkout",))
- def test_diffFromTrunkNoTopfiles(self):
- """
- If there are changes from trunk, then there should also be a topfile.
- """
- runCommand(["git", "checkout", "-b", "mypatch"],
- cwd=self.repo.path)
- somefile = self.repo.child("somefile")
- somefile.setContent(b"change")
- runCommand(["git", "add", somefile.path, somefile.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "some file"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (1,))
- self.assertEqual(logs[-1],
- "No newsfragment found. Have you committed it?")
- def test_noChangeFromTrunk(self):
- """
- If there are no changes from trunk, then no need to check the topfiles
- """
- runCommand(["git", "checkout", "-b", "mypatch"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (0,))
- self.assertEqual(
- logs[-1],
- "On trunk or no diffs from trunk; no need to look at this.")
- def test_trunk(self):
- """
- Running it on trunk always gives green.
- """
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (0,))
- self.assertEqual(
- logs[-1],
- "On trunk or no diffs from trunk; no need to look at this.")
- def test_release(self):
- """
- Running it on a release branch returns green if there is no topfiles
- even if there are changes.
- """
- runCommand(["git", "checkout", "-b", "release-16.11111-9001"],
- cwd=self.repo.path)
- somefile = self.repo.child("somefile")
- somefile.setContent(b"change")
- runCommand(["git", "add", somefile.path, somefile.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "some file"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (0,))
- self.assertEqual(logs[-1],
- "Release branch with no newsfragments, all good.")
- def test_releaseWithTopfiles(self):
- """
- Running it on a release branch returns red if there are new topfiles.
- """
- runCommand(["git", "checkout", "-b", "release-16.11111-9001"],
- cwd=self.repo.path)
- topfiles = self.repo.child("twisted").child("newsfragments")
- topfiles.makedirs()
- fragment = topfiles.child("1234.misc")
- fragment.setContent(b"")
- unrelated = self.repo.child("somefile")
- unrelated.setContent(b"Boo")
- runCommand(["git", "add", fragment.path, unrelated.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "fragment"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (1,))
- self.assertEqual(logs[-1],
- "No newsfragments should be on the release branch.")
- def test_onlyQuotes(self):
- """
- Running it on a branch with only a quotefile change gives green.
- """
- runCommand(["git", "checkout", "-b", "quotefile"],
- cwd=self.repo.path)
- fun = self.repo.child("docs").child("fun")
- fun.makedirs()
- quotes = fun.child("Twisted.Quotes")
- quotes.setContent(b"Beep boop")
- runCommand(["git", "add", quotes.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "quotes"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (0,))
- self.assertEqual(logs[-1],
- "Quotes change only; no newsfragment needed.")
- def test_topfileAdded(self):
- """
- Running it on a branch with a fragment in the topfiles dir added
- returns green.
- """
- runCommand(["git", "checkout", "-b", "quotefile"],
- cwd=self.repo.path)
- topfiles = self.repo.child("twisted").child("newsfragments")
- topfiles.makedirs()
- fragment = topfiles.child("1234.misc")
- fragment.setContent(b"")
- unrelated = self.repo.child("somefile")
- unrelated.setContent(b"Boo")
- runCommand(["git", "add", fragment.path, unrelated.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "topfile"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (0,))
- self.assertEqual(logs[-1], "Found twisted/newsfragments/1234.misc")
- def test_topfileButNotFragmentAdded(self):
- """
- Running it on a branch with a non-fragment in the topfiles dir does not
- return green.
- """
- runCommand(["git", "checkout", "-b", "quotefile"],
- cwd=self.repo.path)
- topfiles = self.repo.child("twisted").child("newsfragments")
- topfiles.makedirs()
- notFragment = topfiles.child("1234.txt")
- notFragment.setContent(b"")
- unrelated = self.repo.child("somefile")
- unrelated.setContent(b"Boo")
- runCommand(["git", "add", notFragment.path, unrelated.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "not topfile"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (1,))
- self.assertEqual(logs[-1],
- "No newsfragment found. Have you committed it?")
- def test_topfileAddedButWithOtherTopfiles(self):
- """
- Running it on a branch with a fragment in the topfiles dir added
- returns green, even if there are other files in the topfiles dir.
- """
- runCommand(["git", "checkout", "-b", "quotefile"],
- cwd=self.repo.path)
- topfiles = self.repo.child("twisted").child("newsfragments")
- topfiles.makedirs()
- fragment = topfiles.child("1234.misc")
- fragment.setContent(b"")
- unrelated = topfiles.child("somefile")
- unrelated.setContent(b"Boo")
- runCommand(["git", "add", fragment.path, unrelated.path],
- cwd=self.repo.path)
- runCommand(["git", "commit", "-m", "topfile"],
- cwd=self.repo.path)
- logs = []
- with self.assertRaises(SystemExit) as e:
- CheckTopfileScript(logs.append).main([self.repo.path])
- self.assertEqual(e.exception.args, (0,))
- self.assertEqual(logs[-1], "Found twisted/newsfragments/1234.misc")
|