1234567891011121314151617181920212223242526272829303132 |
- import { IVProgParser } from './../js/ast/ivprogParser';
- import { SemanticAnalyser } from './../js/processor/semantic/semanticAnalyser';
- import { LanguageService } from '../js/services/languageService';
- import { OutputTest } from '../js/util/outputTest';
- import { IVProgProcessor } from '../js/processor/ivprogProcessor';
- describe('Math max function applied to an int vector', function () {
- const code = `programa {
- funcao inicio() {
- inteiro a[3] = {1,8,3}
- escreva(Matematica.maximo(a))
- }
- }`;
- localStorage.setItem('ivprog.lang', 'pt');
- const lexer = LanguageService.getCurrentLexer();
- const out = new OutputTest();
- it(`should return an int`, function (done) {
- const parser = new IVProgParser(code, lexer);
- const sem = new SemanticAnalyser(parser.parseTree());
- const exec = new IVProgProcessor(sem.analyseTree());
- exec.registerOutput(out);
- exec.interpretAST().then(_ => {
- expect(out.list).toEqual(['8']);
- done();
- }).catch(err => done(err));
- });
- });
|