-
-
Notifications
You must be signed in to change notification settings - Fork 631
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
worksheet: add extra test for sheet name quoting
- Loading branch information
Showing
6 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.