Example #1
0
    def test_commented_citations(self):
        text = """
        I want this one \cite{Foo1999} %but not that one \cite{Bar2000}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #2
0
    def test_citations_with_option(self):
        text = """
        \cite[option]{Foo1999}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #3
0
    def test_citations_with_option(self):
        text = """
        \cite[option]{Foo1999}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #4
0
    def test_multiple_citations(self):
        text = """
        \cite{Foo1999, Bar2012}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999', 'Bar2012']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #5
0
    def test_commented_citations(self):
        text = """
        I want this one \cite{Foo1999} %but not that one \cite{Bar2000}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #6
0
    def test_multiple_citations(self):
        text = """
        \cite{Foo1999, Bar2012}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999', 'Bar2012']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #7
0
    def test_natbib_2options(self):
        text = """
        \citep[opt][]{p90}
        \citep[opt][opt2]{p290}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['p90', 'p290']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #8
0
    def test_natbib_2options(self):
        text = """
        \citep[opt][]{p90}
        \citep[opt][opt2]{p290}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['p90', 'p290']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #9
0
    def test_simple_citations(self):

        text = """
        \cite{Foo1999}

        \cite{Here1999} blah \cite{There2012}

        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999', 'Here1999', 'There2012']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #10
0
    def test_simple_citations(self):

        text = """
        \cite{Foo1999}

        \cite{Here1999} blah \cite{There2012}

        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['Foo1999', 'Here1999', 'There2012']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #11
0
    def test_natbib_1option(self):
        text = """
        \citet[opt]{t90}
        \citep[opt]{p90}
        \citet*[opt]{tstar90}
        \citep*[opt]{pstar90}

        \citealt[opt]{alt90}
        \citealp[opt]{alp90}
        \citealt*[opt]{altstar90}
        \citealp*[opt]{alpstar90}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = ['t90', 'p90', 'tstar90', 'pstar90', 'alt90', 'alp90', 'altstar90', 'alpstar90']
        result = _get_citations(temp)
        self.assertEqual(expected, result)
Example #12
0
    def test_natbib_1option(self):
        text = """
        \citet[opt]{t90}
        \citep[opt]{p90}
        \citet*[opt]{tstar90}
        \citep*[opt]{pstar90}

        \citealt[opt]{alt90}
        \citealp[opt]{alp90}
        \citealt*[opt]{altstar90}
        \citealp*[opt]{alpstar90}
        """
        temp = tempfile.mkstemp()[1]
        with open(temp, 'w') as tmp:
            tmp.write(text)

        expected = [
            't90', 'p90', 'tstar90', 'pstar90', 'alt90', 'alp90', 'altstar90',
            'alpstar90'
        ]
        result = _get_citations(temp)
        self.assertEqual(expected, result)