1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
use crate::console::{read_line, Console};
use crate::storage::Storage;
use async_trait::async_trait;
use endbasic_core::ast::{ArgSep, ArgSpan, BuiltinCallSpan, Value, VarType};
use endbasic_core::exec::{Machine, StopReason};
use endbasic_core::syms::{
CallError, CallableMetadata, CallableMetadataBuilder, Command, CommandResult,
};
use std::cell::RefCell;
use std::io;
use std::path::PathBuf;
use std::rc::Rc;
use std::str;
const CATEGORY: &str = "Stored program
The EndBASIC interpreter has a piece of read/write memory called the \"stored program\". This \
memory serves to maintain the code of a program you edit and manipulate right from the \
interpreter.
The common flow to interact with a stored program is to load a program from disk using the LOAD \
command, modify its contents via the EDIT command, execute the program via the RUN command, and \
finally save the new or modified program via the SAVE command.
Be aware that the stored program's content is lost whenever you load a program, exit the \
interpreter, or use the NEW command. These operations will ask you to save the program if you \
have forgotten to do so, but it's better to get in the habit of saving often.
See the \"File system\" help topic for information on where the programs can be saved and loaded \
from.";
pub const BREAK_MSG: &str = "**** BREAK ****";
#[async_trait(?Send)]
pub trait Program {
fn is_dirty(&self) -> bool;
async fn edit(&mut self, console: &mut dyn Console) -> io::Result<()>;
fn load(&mut self, name: Option<&str>, text: &str);
fn name(&self) -> Option<&str>;
fn set_name(&mut self, name: &str);
fn text(&self) -> String;
}
#[derive(Default)]
pub(crate) struct ImmutableProgram {
name: Option<String>,
text: String,
}
#[async_trait(?Send)]
impl Program for ImmutableProgram {
fn is_dirty(&self) -> bool {
false
}
async fn edit(&mut self, _console: &mut dyn Console) -> io::Result<()> {
Err(io::Error::new(io::ErrorKind::Other, "Editing not supported"))
}
fn load(&mut self, name: Option<&str>, text: &str) {
self.name = name.map(str::to_owned);
self.text = text.to_owned();
}
fn name(&self) -> Option<&str> {
self.name.as_deref()
}
fn set_name(&mut self, name: &str) {
self.name = Some(name.to_owned());
}
fn text(&self) -> String {
self.text.clone()
}
}
fn add_extension<S: Into<PathBuf>>(path: S) -> io::Result<String> {
let mut path = path.into();
if let Some(ext) = path.extension() {
if ext != "bas" && ext != "BAS" {
return Err(io::Error::new(io::ErrorKind::InvalidInput, "Invalid filename extension"));
}
} else {
let mut ext = "BAS";
for ch in path.to_string_lossy().chars() {
if ch.is_ascii_lowercase() {
ext = "bas";
break;
}
}
path.set_extension(ext);
}
Ok(path.to_str().expect("Path came from a String").to_owned())
}
pub async fn continue_if_modified(
program: &dyn Program,
console: &mut dyn Console,
) -> io::Result<bool> {
if !program.is_dirty() {
return Ok(true);
}
match program.name() {
Some(name) => console.print(&format!("Current program {} has unsaved changes!", name))?,
None => console.print("Current program has unsaved changes and has never been saved!")?,
}
let answer = read_line(console, "Discard and continue (y/N)? ", "", None).await?;
match Value::parse_as(VarType::Boolean, answer) {
Ok(Value::Boolean(b)) => Ok(b),
_ => Ok(false),
}
}
pub struct KillCommand {
metadata: CallableMetadata,
storage: Rc<RefCell<Storage>>,
}
impl KillCommand {
pub fn new(storage: Rc<RefCell<Storage>>) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("KILL", VarType::Void)
.with_syntax("filename$")
.with_category(CATEGORY)
.with_description(
"Deletes the given program.
The filename must be a string and must be a valid EndBASIC path. The .BAS extension is optional \
but, if present, it must be .BAS.
See the \"File system\" help topic for information on the path syntax.",
)
.build(),
storage,
})
}
}
#[async_trait(?Send)]
impl Command for KillCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, machine: &mut Machine) -> CommandResult {
if span.args.len() != 1 {
return Err(CallError::SyntaxError);
}
let arg0 = span.args[0].expr.as_ref().expect("Single argument must be present");
match arg0.eval(machine.get_mut_symbols()).await? {
Value::Text(t) => {
let name = add_extension(t)?;
self.storage.borrow_mut().delete(&name).await?;
}
_ => {
return Err(CallError::ArgumentError(
arg0.start_pos(),
"KILL requires a string as the filename".to_owned(),
))
}
}
Ok(())
}
}
pub struct EditCommand {
metadata: CallableMetadata,
console: Rc<RefCell<dyn Console>>,
program: Rc<RefCell<dyn Program>>,
}
impl EditCommand {
pub fn new(console: Rc<RefCell<dyn Console>>, program: Rc<RefCell<dyn Program>>) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("EDIT", VarType::Void)
.with_syntax("")
.with_category(CATEGORY)
.with_description("Interactively edits the stored program.")
.build(),
console,
program,
})
}
}
#[async_trait(?Send)]
impl Command for EditCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, _machine: &mut Machine) -> CommandResult {
if !span.args.is_empty() {
return Err(CallError::SyntaxError);
}
let mut console = self.console.borrow_mut();
let mut program = self.program.borrow_mut();
program.edit(&mut *console).await?;
Ok(())
}
}
pub struct ListCommand {
metadata: CallableMetadata,
console: Rc<RefCell<dyn Console>>,
program: Rc<RefCell<dyn Program>>,
}
impl ListCommand {
pub fn new(console: Rc<RefCell<dyn Console>>, program: Rc<RefCell<dyn Program>>) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("LIST", VarType::Void)
.with_syntax("")
.with_category(CATEGORY)
.with_description("Prints the currently-loaded program.")
.build(),
console,
program,
})
}
}
#[async_trait(?Send)]
impl Command for ListCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, _machine: &mut Machine) -> CommandResult {
if !span.args.is_empty() {
return Err(CallError::SyntaxError);
}
let mut console = self.console.borrow_mut();
for line in self.program.borrow().text().lines() {
console.print(line)?;
}
Ok(())
}
}
pub struct LoadCommand {
metadata: CallableMetadata,
console: Rc<RefCell<dyn Console>>,
storage: Rc<RefCell<Storage>>,
program: Rc<RefCell<dyn Program>>,
}
impl LoadCommand {
pub fn new(
console: Rc<RefCell<dyn Console>>,
storage: Rc<RefCell<Storage>>,
program: Rc<RefCell<dyn Program>>,
) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("LOAD", VarType::Void)
.with_syntax("filename$")
.with_category(CATEGORY)
.with_description(
"Loads the given program.
The filename must be a string and must be a valid EndBASIC path. The .BAS extension is optional \
but, if present, it must be .BAS.
Any previously stored program is discarded from memory, but LOAD will pause to ask before \
discarding any unsaved modifications.
See the \"File system\" help topic for information on the path syntax.",
)
.build(),
console,
storage,
program,
})
}
}
#[async_trait(?Send)]
impl Command for LoadCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, machine: &mut Machine) -> CommandResult {
if span.args.len() != 1 {
return Err(CallError::SyntaxError);
}
let arg0 = span.args[0].expr.as_ref().expect("Single argument must be present");
let name = match arg0.eval(machine.get_mut_symbols()).await? {
Value::Text(t) => add_extension(t)?,
_ => {
return Err(CallError::ArgumentError(
arg0.start_pos(),
"LOAD requires a string as the filename".to_owned(),
))
}
};
if continue_if_modified(&*self.program.borrow(), &mut *self.console.borrow_mut()).await? {
let content = self.storage.borrow().get(&name).await?;
let full_name = self.storage.borrow().make_canonical(&name)?;
self.program.borrow_mut().load(Some(&full_name), &content);
machine.clear();
} else {
self.console
.borrow_mut()
.print("LOAD aborted; use SAVE to save your current changes.")?;
}
Ok(())
}
}
pub struct NewCommand {
metadata: CallableMetadata,
console: Rc<RefCell<dyn Console>>,
program: Rc<RefCell<dyn Program>>,
}
impl NewCommand {
pub fn new(console: Rc<RefCell<dyn Console>>, program: Rc<RefCell<dyn Program>>) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("NEW", VarType::Void)
.with_syntax("")
.with_category(CATEGORY)
.with_description(
"Restores initial machine state and creates a new program.
This command resets the machine to a pristine state by clearing all user-defined variables \
and restoring the state of shared resources. These resources include: the console, whose color \
and video syncing bit are reset; and the GPIO pins, which are set to their default state.
The stored program is also discarded from memory, but NEW will pause to ask before discarding \
any unsaved modifications. To reset resources but avoid clearing the stored program, use CLEAR \
instead.",
)
.build(),
console,
program,
})
}
}
#[async_trait(?Send)]
impl Command for NewCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, machine: &mut Machine) -> CommandResult {
if !span.args.is_empty() {
return Err(CallError::SyntaxError);
}
if continue_if_modified(&*self.program.borrow(), &mut *self.console.borrow_mut()).await? {
self.program.borrow_mut().load(None, "");
machine.clear();
} else {
self.console
.borrow_mut()
.print("NEW aborted; use SAVE to save your current changes.")?;
}
Ok(())
}
}
pub struct RunCommand {
metadata: CallableMetadata,
console: Rc<RefCell<dyn Console>>,
program: Rc<RefCell<dyn Program>>,
}
impl RunCommand {
pub fn new(console: Rc<RefCell<dyn Console>>, program: Rc<RefCell<dyn Program>>) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("RUN", VarType::Void)
.with_syntax("")
.with_category(CATEGORY)
.with_description(
"Runs the stored program.
This issues a CLEAR operation before starting the program to prevent previous leftover state \
from interfering with the new execution.",
)
.build(),
console,
program,
})
}
}
#[async_trait(?Send)]
impl Command for RunCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, machine: &mut Machine) -> CommandResult {
if !span.args.is_empty() {
return Err(CallError::SyntaxError);
}
machine.clear();
let program = self.program.borrow().text();
let stop_reason = match machine.exec(&mut program.as_bytes()).await {
Ok(stop_reason) => stop_reason,
Err(e) => return Err(CallError::NestedError(format!("{}", e))),
};
match stop_reason {
StopReason::Break => self.console.borrow_mut().print(BREAK_MSG)?,
stop_reason => {
if stop_reason.as_exit_code() != 0 {
self.console.borrow_mut().print(&format!(
"Program exited with code {}",
stop_reason.as_exit_code()
))?;
}
}
}
Ok(())
}
}
pub struct SaveCommand {
metadata: CallableMetadata,
console: Rc<RefCell<dyn Console>>,
storage: Rc<RefCell<Storage>>,
program: Rc<RefCell<dyn Program>>,
}
impl SaveCommand {
pub fn new(
console: Rc<RefCell<dyn Console>>,
storage: Rc<RefCell<Storage>>,
program: Rc<RefCell<dyn Program>>,
) -> Rc<Self> {
Rc::from(Self {
metadata: CallableMetadataBuilder::new("SAVE", VarType::Void)
.with_syntax("[filename$]")
.with_category(CATEGORY)
.with_description(
"Saves the current program in memory to the given filename.
The filename must be a string and must be a valid EndBASIC path. The .BAS extension is optional \
but, if present, it must be .BAS.
If no filename is given, SAVE will try to use the filename of the loaded program (if any) and \
will fail if no name has been given yet.
See the \"File system\" help topic for information on the path syntax.",
)
.build(),
console,
storage,
program,
})
}
}
#[async_trait(?Send)]
impl Command for SaveCommand {
fn metadata(&self) -> &CallableMetadata {
&self.metadata
}
async fn exec(&self, span: &BuiltinCallSpan, machine: &mut Machine) -> CommandResult {
let name = match span.args.as_slice() {
[] => match self.program.borrow().name() {
Some(name) => name.to_owned(),
None => {
return Err(CallError::ArgumentError(
span.name_pos,
"Unnamed program; please provide a filename".to_owned(),
))
}
},
[ArgSpan { expr: Some(expr), sep: ArgSep::End, .. }] => {
match expr.eval(machine.get_mut_symbols()).await? {
Value::Text(t) => add_extension(t)?,
_ => {
return Err(CallError::ArgumentError(
expr.start_pos(),
"SAVE requires a string as the filename".to_owned(),
))
}
}
}
_ => return Err(CallError::SyntaxError),
};
let full_name = self.storage.borrow().make_canonical(&name)?;
let content = self.program.borrow().text();
self.storage.borrow_mut().put(&name, &content).await?;
self.program.borrow_mut().set_name(&full_name);
self.console.borrow_mut().print(&format!("Saved as {}", full_name))?;
Ok(())
}
}
pub fn add_all(
machine: &mut Machine,
program: Rc<RefCell<dyn Program>>,
console: Rc<RefCell<dyn Console>>,
storage: Rc<RefCell<Storage>>,
) {
machine.add_command(EditCommand::new(console.clone(), program.clone()));
machine.add_command(KillCommand::new(storage.clone()));
machine.add_command(ListCommand::new(console.clone(), program.clone()));
machine.add_command(LoadCommand::new(console.clone(), storage.clone(), program.clone()));
machine.add_command(NewCommand::new(console.clone(), program.clone()));
machine.add_command(RunCommand::new(console.clone(), program.clone()));
machine.add_command(SaveCommand::new(console, storage, program));
}
#[cfg(test)]
mod tests {
use super::*;
use crate::testutils::*;
const NO_ANSWERS: &[&str] =
&["n\n", "N\n", "no\n", "NO\n", "false\n", "FALSE\n", "xyz\n", "\n", "1\n"];
const YES_ANSWERS: &[&str] = &["y\n", "yes\n", "Y\n", "YES\n", "true\n", "TRUE\n"];
#[test]
fn test_kill_ok() {
for p in &["foo", "foo.bas"] {
Tester::default()
.set_program(Some("foo.bas"), "Leave me alone")
.write_file("bar.bas", "")
.write_file("foo.bas", "line 1\n line 2\n")
.run(format!(r#"KILL "{}""#, p))
.expect_program(Some("foo.bas"), "Leave me alone")
.expect_file("MEMORY:/bar.bas", "")
.check();
}
}
#[test]
fn test_kill_errors() {
check_load_save_common_errors("KILL");
Tester::default()
.run("KILL")
.expect_err("1:1: In call to KILL: expected filename$")
.check();
check_stmt_err("1:1: In call to KILL: Entry not found", r#"KILL "missing-file""#);
Tester::default()
.write_file("mismatched-extension.bat", "")
.run(r#"KILL "mismatched-extension""#)
.expect_err("1:1: In call to KILL: Entry not found")
.expect_file("MEMORY:/mismatched-extension.bat", "")
.check();
}
#[test]
fn test_edit_ok() {
Tester::default()
.set_program(Some("foo.bas"), "previous\n")
.add_input_chars("new line\n")
.run("EDIT")
.expect_program(Some("foo.bas"), "previous\nnew line\n")
.check();
}
#[test]
fn test_edit_errors() {
check_stmt_err("1:1: In call to EDIT: expected no arguments", "EDIT 1");
}
#[test]
fn test_list_ok() {
Tester::default().run("LIST").check();
Tester::default()
.set_program(None, "one\n\nthree\n")
.run("LIST")
.expect_prints(["one", "", "three"])
.expect_program(None as Option<&str>, "one\n\nthree\n")
.check();
}
#[test]
fn test_list_errors() {
check_stmt_err("1:1: In call to LIST: expected no arguments", "LIST 2");
}
#[test]
fn test_load_ok() {
let content = "line 1\n\n line 2\n";
for (explicit, canonical) in &[
("foo", "MEMORY:foo.bas"),
("foo.bas", "MEMORY:foo.bas"),
("BAR", "MEMORY:BAR.BAS"),
("BAR.BAS", "MEMORY:BAR.BAS"),
("Baz", "MEMORY:Baz.bas"),
] {
Tester::default()
.write_file("foo.bas", content)
.write_file("foo.bak", "")
.write_file("BAR.BAS", content)
.write_file("Baz.bas", content)
.run(format!(r#"LOAD "{}""#, explicit))
.expect_clear()
.expect_program(Some(*canonical), "line 1\n\n line 2\n")
.expect_file("MEMORY:/foo.bas", content)
.expect_file("MEMORY:/foo.bak", "")
.expect_file("MEMORY:/BAR.BAS", content)
.expect_file("MEMORY:/Baz.bas", content)
.check();
}
}
#[test]
fn test_load_dirty_no_name_abort() {
for answer in NO_ANSWERS {
Tester::default()
.add_input_chars("modified unnamed file\n")
.add_input_chars(answer)
.write_file("other.bas", "other file\n")
.run("EDIT: LOAD \"other.bas\"")
.expect_prints([
"Current program has unsaved changes and has never been saved!",
"LOAD aborted; use SAVE to save your current changes.",
])
.expect_program(None as Option<&str>, "modified unnamed file\n")
.expect_file("MEMORY:/other.bas", "other file\n")
.check();
}
}
#[test]
fn test_load_dirty_no_name_continue() {
for answer in YES_ANSWERS {
Tester::default()
.add_input_chars("modified unnamed file\n")
.add_input_chars(answer)
.write_file("other.bas", "other file\n")
.run("EDIT: LOAD \"other.bas\"")
.expect_prints(["Current program has unsaved changes and has never been saved!"])
.expect_clear()
.expect_program(Some("MEMORY:other.bas"), "other file\n")
.expect_file("MEMORY:/other.bas", "other file\n")
.check();
}
}
#[test]
fn test_load_dirty_with_name_abort() {
for answer in NO_ANSWERS {
Tester::default()
.add_input_chars("modified named file\n")
.add_input_chars(answer)
.write_file("other.bas", "other file\n")
.set_program(Some("MEMORY:/named.bas"), "previous contents\n")
.run("EDIT: LOAD \"other.bas\"")
.expect_prints([
"Current program MEMORY:/named.bas has unsaved changes!",
"LOAD aborted; use SAVE to save your current changes.",
])
.expect_program(
Some("MEMORY:/named.bas"),
"previous contents\nmodified named file\n",
)
.expect_file("MEMORY:/other.bas", "other file\n")
.check();
}
}
#[test]
fn test_load_dirty_with_name_continue() {
for answer in YES_ANSWERS {
Tester::default()
.add_input_chars("modified unnamed file\n")
.add_input_chars(answer)
.write_file("other.bas", "other file\n")
.set_program(Some("MEMORY:/named.bas"), "previous contents\n")
.run("EDIT: LOAD \"other.bas\"")
.expect_prints(["Current program MEMORY:/named.bas has unsaved changes!"])
.expect_clear()
.expect_program(Some("MEMORY:other.bas"), "other file\n")
.expect_file("MEMORY:/other.bas", "other file\n")
.check();
}
}
fn check_load_save_common_errors(cmd: &str) {
Tester::default()
.run(format!("{} 3", cmd))
.expect_err(format!(
"1:1: In call to {}: 1:{}: {} requires a string as the filename",
cmd,
cmd.len() + 2,
cmd
))
.check();
Tester::default()
.run(format!(r#"{} "a/b.bas""#, cmd))
.expect_err(format!("1:1: In call to {}: Too many / separators in path 'a/b.bas'", cmd))
.check();
for p in &["foo.bak", "foo.ba", "foo.basic"] {
Tester::default()
.run(format!(r#"{} "{}""#, cmd, p))
.expect_err(format!("1:1: In call to {}: Invalid filename extension", cmd))
.check();
}
}
#[test]
fn test_load_errors() {
check_load_save_common_errors("LOAD");
Tester::default()
.run("LOAD")
.expect_err("1:1: In call to LOAD: expected filename$")
.check();
check_stmt_err("1:1: In call to LOAD: Entry not found", r#"LOAD "missing-file""#);
Tester::default()
.write_file("mismatched-extension.bat", "")
.run(r#"LOAD "mismatched-extension""#)
.expect_err("1:1: In call to LOAD: Entry not found")
.expect_file("MEMORY:/mismatched-extension.bat", "")
.check();
}
#[test]
fn test_new_nothing() {
Tester::default().run("NEW").expect_clear().check();
}
#[test]
fn test_new_clears_program_and_variables() {
Tester::default()
.set_program(Some("previous.bas"), "some stuff")
.run("a = 3: NEW")
.expect_clear()
.check();
}
#[test]
fn test_new_dirty_no_name_abort() {
for answer in NO_ANSWERS {
Tester::default()
.add_input_chars("modified unnamed file\n")
.add_input_chars(answer)
.run("EDIT: NEW")
.expect_prints([
"Current program has unsaved changes and has never been saved!",
"NEW aborted; use SAVE to save your current changes.",
])
.expect_program(None as Option<&str>, "modified unnamed file\n")
.check();
}
}
#[test]
fn test_new_dirty_no_name_continue() {
for answer in YES_ANSWERS {
Tester::default()
.add_input_chars("modified unnamed file\n")
.add_input_chars(answer)
.run("EDIT: NEW")
.expect_prints(["Current program has unsaved changes and has never been saved!"])
.expect_clear()
.check();
}
}
#[test]
fn test_new_dirty_with_name_abort() {
for answer in NO_ANSWERS {
Tester::default()
.add_input_chars("modified named file\n")
.add_input_chars(answer)
.set_program(Some("MEMORY:/named.bas"), "previous contents\n")
.run("EDIT: NEW")
.expect_prints([
"Current program MEMORY:/named.bas has unsaved changes!",
"NEW aborted; use SAVE to save your current changes.",
])
.expect_program(
Some("MEMORY:/named.bas"),
"previous contents\nmodified named file\n",
)
.check();
}
}
#[test]
fn test_new_dirty_with_name_continue() {
for answer in YES_ANSWERS {
Tester::default()
.add_input_chars("modified named file\n")
.add_input_chars(answer)
.set_program(Some("MEMORY:/named.bas"), "previous contents\n")
.run("EDIT: NEW")
.expect_prints(["Current program MEMORY:/named.bas has unsaved changes!"])
.expect_clear()
.check();
}
}
#[test]
fn test_new_errors() {
check_stmt_err("1:1: In call to NEW: expected no arguments", "NEW 10");
}
#[test]
fn test_run_nothing() {
Tester::default().run("RUN").expect_clear().check();
}
#[test]
fn test_run_clears_before_execution_only() {
let program = "DIM a(1) AS INTEGER: a(0) = 123";
let mut t = Tester::default().set_program(Some("untouched.bas"), program);
t.run("DIM a(1) AS STRING: RUN")
.expect_array_simple("a", VarType::Integer, vec![123.into()])
.expect_clear()
.expect_program(Some("untouched.bas"), program)
.check();
t.run("RUN")
.expect_array_simple("a", VarType::Integer, vec![123.into()])
.expect_clear()
.expect_clear()
.expect_program(Some("untouched.bas"), program)
.check();
}
#[test]
fn test_run_something_that_exits() {
let program = "PRINT 5: END 1: PRINT 4";
Tester::default()
.set_program(Some("untouched.bas"), program)
.run(r#"RUN: PRINT "after""#)
.expect_clear()
.expect_prints([" 5", "Program exited with code 1", "after"])
.expect_program(Some("untouched.bas"), program)
.check();
}
#[test]
fn test_run_errors() {
check_stmt_err("1:1: In call to RUN: expected no arguments", "RUN 10");
}
#[test]
fn test_save_ok_explicit_name() {
let content = "\n some line \n ";
for (explicit, actual, canonical) in &[
("first", "MEMORY:/first.bas", "MEMORY:first.bas"),
("second.bas", "MEMORY:/second.bas", "MEMORY:second.bas"),
("THIRD", "MEMORY:/THIRD.BAS", "MEMORY:THIRD.BAS"),
("FOURTH.BAS", "MEMORY:/FOURTH.BAS", "MEMORY:FOURTH.BAS"),
("Fifth", "MEMORY:/Fifth.bas", "MEMORY:Fifth.bas"),
] {
Tester::default()
.set_program(Some("before.bas"), content)
.run(format!(r#"SAVE "{}""#, explicit))
.expect_program(Some(*canonical), content)
.expect_prints([format!("Saved as {}", canonical)])
.expect_file(*actual, content)
.check();
}
}
#[test]
fn test_save_reuse_name() {
Tester::default()
.set_program(Some("loaded.bas"), "content\n")
.run("SAVE")
.expect_program(Some("MEMORY:loaded.bas"), "content\n")
.expect_prints(["Saved as MEMORY:loaded.bas"])
.expect_file("MEMORY:/loaded.bas", "content\n")
.check();
}
#[test]
fn test_save_unnamed_error() {
Tester::default()
.add_input_chars("modified file\n")
.run("EDIT: SAVE")
.expect_program(None as Option<&str>, "modified file\n")
.expect_err("1:7: In call to SAVE: 1:7: Unnamed program; please provide a filename")
.check();
}
#[test]
fn test_save_errors() {
check_load_save_common_errors("SAVE");
}
}