فهرست منبع

Fix bugs about upgrade arena

- Test pass
- Missing test for initAcmX
Marcelo Fornet 6 سال پیش
والد
کامیت
b0cf1df377
7فایلهای تغییر یافته به همراه54 افزوده شده و 17 حذف شده
  1. 9 2
      .gitignore
  2. 3 0
      notes/similar-projects.md
  3. 6 0
      package.json
  4. 8 4
      src/core.ts
  5. 10 5
      src/extension.ts
  6. 16 6
      src/test/extension.test.ts
  7. 2 0
      todo.md

+ 9 - 2
.gitignore

@@ -1,4 +1,11 @@
-out
+# Extra
 node_modules
-.vscode-test/
+
+# Extension
 *.vsix
+out
+
+# IDE
+.vscode
+.vscode-test/
+

+ 3 - 0
notes/similar-projects.md

@@ -3,5 +3,8 @@
 * [CHelper](https://github.com/EgorKulikov/idea-chelper/)
 * [JHelper](https://github.com/AlexeyDmitriev/JHelper)
 * [Caide](https://github.com/slycelote/caide)
+  * [codeforces post](https://codeforces.com/blog/entry/18838)
 * [Ineffable](https://codeforces.com/blog/entry/19083)
 * [Hightail](https://codeforces.com/blog/entry/13141)
+* [Competitive-Companion](https://github.com/jmerle/competitive-companion)
+

+ 6 - 0
package.json

@@ -39,6 +39,12 @@
                         "description": "Maximum time limit in seconds to run the program on each test case.",
                         "scope": "resource"
                     },
+                    "acmx.stress.times": {
+                        "type": "number",
+                        "default": 10,
+                        "description": "Number of times to run the solution in stress mode.",
+                        "scope": "resource"
+                    },
                     "acmx.execution.compile": {
                         "type": "string",
                         "default": "g++ -std=c++11 $PROGRAM -o $OUTPUT",

+ 8 - 4
src/core.ts

@@ -108,9 +108,13 @@ function createFolder(path: string){
     }
 }
 
-function globalAtticPath(){
+/**
+ * Path to common attic for every problem.
+ *
+ * @param testingPath Use for unit tests
+ */
+function globalAtticPath(testingPath: string | undefined = undefined){
     let path: string | undefined = vscode.workspace.getConfiguration('acmx.configuration', null).get('solutionPath');
-
     return join(path!, ATTIC);
 }
 
@@ -210,7 +214,7 @@ export function upgradeArena(path: string) {
 
     if (!existsSync(brute)){
         // Create brute.cpp file
-        copyFileSync(join(SRC, 'static', solFile()), brute);
+        copyFileSync(join(SRC, 'static', 'template.cpp'), brute);
     }
 
     let generator = join(path, 'gen.py');
@@ -414,7 +418,7 @@ function generateTestcase(path: string){
     closeSync(currentFd);
 }
 
-export function stressSolution(path: string, times: number = 10){
+export function stressSolution(path: string, times: number){
     let sol = join(path, solFile());
     let out = join(path, ATTIC, 'sol');
     let brute = join(path, 'brute.cpp');

+ 10 - 5
src/extension.ts

@@ -2,11 +2,9 @@
 import * as vscode from 'vscode';
 import { existsSync, writeFileSync, readdirSync } from 'fs';
 import { join, extname } from 'path';
-import { SITES } from './conn';
-import { newContestFromId, testSolution, veredictName, stressSolution, upgradeArena, newProblemFromId, removeExtension, solFile, initAcmX } from './core';
+import { SITES, getSite } from './conn';
+import { newContestFromId, testSolution, veredictName, stressSolution, upgradeArena, newProblemFromId, removeExtension, solFile, initAcmX, currentProblem, compileCode, ATTIC } from './core';
 import { Veredict, SiteDescription } from './types';
-import { currentProblem, compileCode, ATTIC } from './core';
-import { getSite } from "./conn";
 
 const TESTCASES = 'testcases';
 
@@ -243,7 +241,14 @@ async function stress(){
         return;
     }
 
-    let result = stressSolution(path);
+    let stressTimes: number | undefined = vscode.workspace.getConfiguration('acmx.stress', null).get('times');
+
+    // Use default
+    if (stressTimes === undefined){
+        stressTimes = 10;
+    }
+
+    let result = stressSolution(path, stressTimes);
 
     if (result.status === Veredict.OK){
         vscode.window.showInformationMessage(`OK. Time ${result.maxTime!}ms`);

+ 16 - 6
src/test/extension.test.ts

@@ -43,6 +43,13 @@ suite("Extension Tests", function () {
         closeSync(currentFd);
     }
 
+    /**
+     * core::initAcmX
+     */
+    test("initAcmX", function(){
+        // TODO
+    });
+
     /**
      * core::newArena
      */
@@ -59,7 +66,6 @@ suite("Extension Tests", function () {
 
         assert.equal(existsSync(join(path, 'sol.cpp')), true);
         assert.equal(existsSync(join(path, ATTIC)), true);
-        assert.equal(existsSync(join(path, ATTIC, 'checker')), true);
         assert.equal(existsSync(join(path, TESTCASES)), true);
 
         recRmdir(path);
@@ -122,17 +128,21 @@ suite("Extension Tests", function () {
     });
 
     /**
-     * core::newProblem
+     * core::newContestFromId
      */
     test("newContestFromId", async function(){
         let contestId = 'testContestFromId';
         let path = join(ARENA, contestId);
 
+        if (existsSync(path)){
+            recRmdir(path);
+        }
+
         assert.equal(existsSync(path), false);
 
-        await newContestFromId(path, getSite('personal'), "5");
+        await newContestFromId(path, getSite('empty'), "5");
 
-        assert.equal(readdirSync(path).length, "5");
+        assert.equal(readdirSync(path).length, 1);
 
         recRmdir(path);
     });
@@ -244,7 +254,7 @@ suite("Extension Tests", function () {
         `print(random.randint(0, 99))\n`
         );
 
-        let result = stressSolution(path);
+        let result = stressSolution(path, 10);
 
         assert.equal(result.status, Veredict.OK);
 
@@ -295,7 +305,7 @@ suite("Extension Tests", function () {
         `print(random.randint(0, 99))\n`
         );
 
-        let result = stressSolution(path);
+        let result = stressSolution(path, 10);
 
         assert.equal(result.status, Veredict.WA);
 

+ 2 - 0
todo.md

@@ -7,6 +7,8 @@
 * [005](/src/core.ts): Restrict brute in time, and capture errors
   * Allow stopping a running program (such as sol.cpp/brute.cpp/gen.py/etc...)
 * [007](/src/extension.ts): How can I have access to new proccess created using `openFolder`?
+* Add Telegram group join link in the Readme
+* Add gif to README. Gif should be a tutorial (how to use).
 
 ## QUICK TODO