test: autosave after any shape
[?]
Jun 15, 2022, 5:06 AM
7CLGG7J277QZGMNOVFEXBX6DRETCVK7GH66HJ7BYOBMPHTJCDFMACDependencies
- [2]
AD34IX2Zcouple more tests - [3]
CRYGI3LRmore drawing tests - [4]
BYG5CEMVsupport for naming points - [5]
2XLZCWZCbugfix: rectangles and squares are now saved - [6]
AVTNUQYRbasic test-enabled framework - [7]
VHQCNMARseveral more modules - [8]
CPZGQT72go through and fix similar issues - [*]
K2X6G75Zstart writing some tests for drawings - [*]
3QNOKBFMbeginnings of a test harness - [*]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing
Change contents
- replacement in file.lua at line 5
local infile = io.open(filename)local infile = App.open_for_reading(filename) - edit in drawing_tests.lua at line 5
function test_creating_drawing_saves()io.write('\ntest_creating_drawing_saves')App.screen.init{width=120, height=60}Filename = 'foo'Lines = load_array{}App.draw()-- click on button to create drawingApp.run_after_mouse_click(8,Margin_top+8, 1)-- filesystem contains drawing and an empty line of textcheck_eq(App.filesystem['foo'], '```lines\n```\n\n', 'F - test_creating_drawing_saves')end - edit in drawing_tests.lua at line 20
Filename = 'foo' - edit in drawing_tests.lua at line 44
-- The format on disk isn't perfectly stable. Table fields can be reordered.-- So just reload from disk to verify.Lines = load_from_disk(Filename)local drawing = Lines[1]check_eq(#drawing.shapes, 1, 'F - test_draw_line/save/#shapes')check_eq(#drawing.points, 2, 'F - test_draw_line/save/#points')check_eq(drawing.shapes[1].mode, 'line', 'F - test_draw_line/save/shape:1')local p1 = drawing.points[drawing.shapes[1].p1]local p2 = drawing.points[drawing.shapes[1].p2]check_eq(p1.x, 5, 'F - test_draw_line/save/p1:x')check_eq(p1.y, 6, 'F - test_draw_line/save/p1:y')check_eq(p2.x, 35, 'F - test_draw_line/save/p2:x')check_eq(p2.y, 36, 'F - test_draw_line/save/p2:y') - replacement in app.lua at line 279
write = function(self, s)App.filesystem[filename] = App.filesystem[filename]..swrite = function(self, ...)local args = {...}for i,s in ipairs(args) doApp.filesystem[filename] = App.filesystem[filename]..sendend,close = function(self)end}endfunction App.open_for_reading(filename)return {lines = function(self)return App.filesystem[filename]:gmatch('[^\n]+') - edit in app.lua at line 347
App.open_for_reading = function(filename) return io.open(filename, 'r') end - edit in Manual_tests.md at line 16
draw a line, circle, rectangle, square, polygon, quit, restart. All the shapes you drew should still be visible.