import { Decimal } from 'decimal.js'; import { InputAssessment } from "../../util/input_assessment"; import { OutputTest } from "../../util/outputTest"; import { Config } from "../../util/config"; import { levenshteinDistance } from "../../util/utils"; import * as TypeParser from "./../../typeSystem/parsers"; import * as LocalizedStringsService from "../../services/localizedStringsService"; import * as OutputResult from "./output_result"; const LocalizedStrings = LocalizedStringsService.getInstance(); export class OutputMatching { static get NUM_REGEX () { return /^[0-9]+(\.[0-9]+)?$/; } static get NUM_IN_STRING_REGEX () { return /[0-9]+(\.[0-9]+)?/g; } static get BOOLEAN_REGEX () { const str = `^(${LocalizedStrings.getUI("logic_value_true")}|${LocalizedStrings.getUI("logic_value_true")})$`; return new RegExp(str); } static get BOOLEAN_IN_STRING_REGEX () { const str = `(${LocalizedStrings.getUI("logic_value_true")}|${LocalizedStrings.getUI("logic_value_true")})`; return new RegExp(str, 'g'); } constructor (program, input_list, expected_output, test_name) { this.program = program; this.name = test_name; this.input_list = input_list; this.expected_output = expected_output; } eval () { const outerThis = this; const input = new InputAssessment(this.input_list); const gen_output = new OutputTest(); program.registerInput(input); program.registerOutput(gen_output); const start_time = Date.now(); return this.program.interpretAST().then( sto => { }).catch(error => { }); } outputMatch (g_output, e_output) { if(OutputMatching.NUM_REGEX.test(e_output)) { const g_num = new Decimal(g_output); const e_num = new Decimal(e_output); this.checkNumbers(g_num, e_num); } else if (OutputMatching.BOOLEAN_REGEX.test(e_output)) { const g_bool = TypeParser.toBool(g_output); const e_bool = TypeParser.toBool(e_output); this.checkBoolean(g_bool, e_bool); } else { this.checkStrings(g_output, e_output); } } checkNumbers (g_num, e_num) { const decimalPlaces = Math.min(e_num.dp(), Config.decimalPlaces); g_num = new Decimal(g_num.toFixed(decimalPlaces, Decimal.ROUND_FLOOR)); e_num = new Decimal(e_num.toFixed(decimalPlaces, Decimal.ROUND_FLOOR)); const result = g_num.eq(e_num); const grade = result ? 1 : 0; return OutputResult.createNumberResult(e_num, g_num, grade); } checkBoolean (g_bool, e_bool) { const grade = g_bool == e_bool ? 1 : 0; const g_bool_text = TypeParser.convertBoolToString(g_bool); const e_bool_text = TypeParser.convertBoolToString(e_bool); return OutputResult.createBoolResult(e_bool_text, g_bool_text, grade); } checkStrings (g_output, e_ouput) { const assessmentList = [] let e_ouput_clean = e_ouput; let g_output_clean = g_output; if (OutputMatching.NUM_IN_STRING_REGEX.test(e_ouput)) { const expected_numbers = e_ouput.match(OutputMatching.NUM_IN_STRING_REGEX); const generated_numbers = g_output.match(OutputMatching.NUM_IN_STRING_REGEX); const result = generated_numbers.map((val, i) => { if(i >= expected_numbers.length) { return OutputResult.createNumberResult(null, val, 0); } return this.checkNumbers(val, expected_numbers[i]); }, this); if(expected_numbers.length > generated_numbers.length) { for(let i = generated_numbers.length; i < expected_numbers.length; ++i) { result.push(OutputResult.createNumberResult(expected_numbers[i], null, 0)); } } e_ouput_clean = e_ouput_clean.replace(OutputMatching.NUM_IN_STRING_REGEX, '').trim(); g_output_clean = g_output_clean.replace(OutputMatching.NUM_IN_STRING_REGEX, '').trim(); const numberGrade = result.reduce((prev, r) => prev + r.grade, 0) / result.length; assessmentList.push(numberGrade); } if(OutputMatching.BOOLEAN_IN_STRING_REGEX.test(e_ouput)) { const expected_bools = e_ouput.match(OutputMatching.BOOLEAN_IN_STRING_REGEX); const generated_bools = g_output.match(OutputMatching.BOOLEAN_IN_STRING_REGEX); const result = generated_bools.map((val, i) => { if(i >= expected_bools.length) { return OutputResult.createBoolResult(null, val, 0); } return this.checkBoolean(val, expected_bools[i]); }, this); if(expected_bools.length > generated_bools.length) { for(let i = generated_bools.length; i < expected_bools.length; ++i) { result.push(OutputResult.createBoolResult(expected_bools[i], null, 0)); } } e_ouput_clean = e_ouput_clean.replace(OutputMatching.NUM_IN_STRING_REGEX, '').trim(); g_output_clean = g_output_clean.replace(OutputMatching.NUM_IN_STRING_REGEX, '').trim(); const boolGrade = result.reduce((prev, r) => prev + r.grade, 0) / result.length; assessmentList.push(boolGrade); } const dist = levenshteinDistance(g_output_clean, e_ouput_clean); const gradeDiff = Math.max(0, e_ouput_clean.length - dist); const assessment_size = assessmentList.length + 1; const gradeAcc = assessmentList.reduce((prev, val) => prev + val/assessment_size, 0); const finalGrade = 1 * (gradeDiff/assessment_size + gradeAcc); return OutputResult.createStringResult(e_ouput, g_output, finalGrade); } }