Delete 'src/my-online-judge-master/MYOJ/compile_server/test/testCompileRun.cc'

master
pk4wt2yal 2 weeks ago
parent 6136d37acc
commit 8338686b51

@ -1,120 +0,0 @@
#include "compile_run.hpp"
int main()
{
ns_compile_run::Compile_Run cr;
Json::Value value_in;
Json::StyledWriter writer;
// in_json中包含:
// 1、code用户提交的代码
// 2、input用户给自己提交的代码所做的输入不做处理
// 3、cpu_limitCPU运行时间限制
// 4、mem_limit内存限制即空间限制
// 测试:
// 1.正常程序
// value_in["code"] = "#include <iostream>\nint main(){ std::cout << \"hello world\" << std::endl; return 0;}";
// value_in["cpu_limit"] = 1;
// value_in["mem_limit"] = 1024 * 1024 * 1024;
// 2.空程序
// value_in["code"] = "";
// value_in["cpu_limit"] = 1;
// value_in["mem_limit"] = 1024 * 1024 * 1024;
// 3.编译错误
// value_in["code"] = "dsadwadawdaw";
// value_in["cpu_limit"] = 1;
// value_in["mem_limit"] = 1024 * 1024 * 1024;
// 4.CPU超时等异常错误
// value_in["code"] = "#include <iostream>\n int main(){ while (true) { std::cout << \"hello zzy\" << std::endl; } return 0;}";
// value_in["cpu_limit"] = 1;
// value_in["mem_limit"] = 1024 * 1024 * 1024;
//value_in["code"] = "int main()\n {return 0;}";
value_in["code"] = R"(#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
class Solution
{
public:
bool isPalindrome(int x)
{
if (x < 0)
{
return false; // 负数不可能是回文数
}
string str1 = to_string(x);
string str2(str1);
reverse(str2.begin(), str2.end());
for (int i = 0; i < str1.size() / 2; i++)
{
if (str2[i] != str1[i])
{
return false;
}
}
return true;
}
};
void Test1()
{
// 通过定义临时对象,来完成方法的调用
bool ret = Solution().isPalindrome(121);
if (ret)
{
std::cout << "通过用例1, 测试121通过 ... OK!" << std::endl;
}
else
{
std::cout << "没有通过用例1, 测试的值是: 121" << std::endl;
}
}
void Test2()
{
// 通过定义临时对象,来完成方法的调用
bool ret = Solution().isPalindrome(-10);
if (!ret)
{
std::cout << "通过用例2, 测试-10通过 ... OK!" << std::endl;
}
else
{
std::cout << "没有通过用例2, 测试的值是: -10" << std::endl;
}
}
int main()
{
Test1();
Test2();
return 0;
})";
value_in["cpu_limit"] = 1;
value_in["mem_limit"] = 1024 * 1024 * 1024;
std::string in_json;
in_json = writer.write(value_in);
std::string out_json;
cr.start(in_json, &out_json);
std::cout << out_json << std::endl;
return 0;
}
Loading…
Cancel
Save