Skip to content

Commit

Permalink
worksheet: add extra test for sheet name quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Jun 22, 2024
1 parent f3700a5 commit 6a3a310
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 0 deletions.
55 changes: 55 additions & 0 deletions xlsxwriter/test/comparison/test_quote_name05.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
###############################################################################
#
# Tests for XlsxWriter.
#
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c), 2013-2023, John McNamara, jmcnamara@cpan.org
#

from ..excel_comparison_test import ExcelComparisonTest
from ...workbook import Workbook


class TestCompareXLSXFiles(ExcelComparisonTest):
"""
Test file created by XlsxWriter against a file created by Excel.
"""

def setUp(self):

self.set_filename("quote_name05.xlsx")

def test_create_file(self):
"""Test the creation of a simple XlsxWriter file."""

workbook = Workbook(self.got_filename)

worksheet = workbook.add_worksheet()
chart = workbook.add_chart({"type": "column"})

chart.axis_ids = [54437760, 59195776]

data = [
[1, 2, 3, 4, 5],
[2, 4, 6, 8, 10],
[3, 6, 9, 12, 15],
]

worksheet.write_column("A1", data[0])
worksheet.write_column("B1", data[1])
worksheet.write_column("C1", data[2])

worksheet.repeat_rows(0, 1)
worksheet.set_portrait()
worksheet.vertical_dpi = 200

chart.add_series({"values": ["Sheet1", 0, 0, 4, 0]})
chart.add_series({"values": ["Sheet1", 0, 1, 4, 1]})
chart.add_series({"values": ["Sheet1", 0, 2, 4, 2]})

worksheet.insert_chart("E9", chart)

workbook.close()

self.assertExcelEqual()
55 changes: 55 additions & 0 deletions xlsxwriter/test/comparison/test_quote_name06.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
###############################################################################
#
# Tests for XlsxWriter.
#
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c), 2013-2023, John McNamara, jmcnamara@cpan.org
#

from ..excel_comparison_test import ExcelComparisonTest
from ...workbook import Workbook


class TestCompareXLSXFiles(ExcelComparisonTest):
"""
Test file created by XlsxWriter against a file created by Excel.
"""

def setUp(self):

self.set_filename("quote_name06.xlsx")

def test_create_file(self):
"""Test the creation of a simple XlsxWriter file."""

workbook = Workbook(self.got_filename)

worksheet = workbook.add_worksheet("Sheet-1")
chart = workbook.add_chart({"type": "column"})

chart.axis_ids = [62284544, 83429248]

data = [
[1, 2, 3, 4, 5],
[2, 4, 6, 8, 10],
[3, 6, 9, 12, 15],
]

worksheet.write_column("A1", data[0])
worksheet.write_column("B1", data[1])
worksheet.write_column("C1", data[2])

worksheet.repeat_rows(0, 1)
worksheet.set_portrait()
worksheet.vertical_dpi = 200

chart.add_series({"values": ["Sheet-1", 0, 0, 4, 0]})
chart.add_series({"values": ["Sheet-1", 0, 1, 4, 1]})
chart.add_series({"values": ["Sheet-1", 0, 2, 4, 2]})

worksheet.insert_chart("E9", chart)

workbook.close()

self.assertExcelEqual()
54 changes: 54 additions & 0 deletions xlsxwriter/test/comparison/test_quote_name07.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
###############################################################################
#
# Tests for XlsxWriter.
#
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c), 2013-2023, John McNamara, jmcnamara@cpan.org
#

from ..excel_comparison_test import ExcelComparisonTest
from ...workbook import Workbook


class TestCompareXLSXFiles(ExcelComparisonTest):
"""
Test file created by XlsxWriter against a file created by Excel.
"""

def setUp(self):

self.set_filename("quote_name07.xlsx")

def test_create_file(self):
"""Test the creation of a simple XlsxWriter file."""

workbook = Workbook(self.got_filename)

worksheet = workbook.add_worksheet("Sheet'1")
chart = workbook.add_chart({"type": "column"})

chart.axis_ids = [48135552, 54701056]

data = [
[1, 2, 3, 4, 5],
[2, 4, 6, 8, 10],
[3, 6, 9, 12, 15],
]

worksheet.write_column("A1", data[0])
worksheet.write_column("B1", data[1])
worksheet.write_column("C1", data[2])

worksheet.repeat_rows(0, 1)
worksheet.set_portrait()
worksheet.vertical_dpi = 200

chart.add_series({"values": ["Sheet'1", 0, 0, 4, 0]})
chart.add_series({"values": ["Sheet'1", 0, 1, 4, 1]})
chart.add_series({"values": ["Sheet'1", 0, 2, 4, 2]})
worksheet.insert_chart("E9", chart)

workbook.close()

self.assertExcelEqual()
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 6a3a310

Please sign in to comment.