@testgorilla/tgo-coding-test 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +45 -0
- package/README.md +257 -0
- package/jest.config.ts +21 -0
- package/ng-package.json +14 -0
- package/package.json +33 -0
- package/project.json +36 -0
- package/src/assets/i18n/en.json +124 -0
- package/src/index.ts +30 -0
- package/src/lib/components/.gitkeep +0 -0
- package/src/lib/components/code-editor/code-editor.component.html +10 -0
- package/src/lib/components/code-editor/code-editor.component.scss +21 -0
- package/src/lib/components/code-editor/code-editor.component.spec.ts +136 -0
- package/src/lib/components/code-editor/code-editor.component.ts +369 -0
- package/src/lib/components/code-editor/code-editor.mocks.ts +28 -0
- package/src/lib/components/code-editor/code-editor.service.spec.ts +160 -0
- package/src/lib/components/code-editor/code-editor.service.ts +94 -0
- package/src/lib/components/code-editor/helpers/c-helper.spec.ts +39 -0
- package/src/lib/components/code-editor/helpers/c-helper.ts +51 -0
- package/src/lib/components/code-editor/helpers/code-editor-helper.base.spec.ts +30 -0
- package/src/lib/components/code-editor/helpers/code-editor-helper.base.ts +16 -0
- package/src/lib/components/code-editor/helpers/code-editor-helper.mocks.ts +24 -0
- package/src/lib/components/code-editor/helpers/code-editor-helper.model.ts +67 -0
- package/src/lib/components/code-editor/helpers/cpp-helper.spec.ts +40 -0
- package/src/lib/components/code-editor/helpers/cpp-helper.ts +52 -0
- package/src/lib/components/code-editor/helpers/csharp-helper.spec.ts +42 -0
- package/src/lib/components/code-editor/helpers/csharp-helper.ts +55 -0
- package/src/lib/components/code-editor/helpers/go-helper.spec.ts +41 -0
- package/src/lib/components/code-editor/helpers/go-helper.ts +54 -0
- package/src/lib/components/code-editor/helpers/index.ts +15 -0
- package/src/lib/components/code-editor/helpers/java-helper.spec.ts +41 -0
- package/src/lib/components/code-editor/helpers/java-helper.ts +54 -0
- package/src/lib/components/code-editor/helpers/javascript-helper.spec.ts +39 -0
- package/src/lib/components/code-editor/helpers/javascript-helper.ts +32 -0
- package/src/lib/components/code-editor/helpers/kotlin-helper.spec.ts +41 -0
- package/src/lib/components/code-editor/helpers/kotlin-helper.ts +54 -0
- package/src/lib/components/code-editor/helpers/php-helper.spec.ts +39 -0
- package/src/lib/components/code-editor/helpers/php-helper.ts +32 -0
- package/src/lib/components/code-editor/helpers/python-helper.spec.ts +39 -0
- package/src/lib/components/code-editor/helpers/python-helper.ts +32 -0
- package/src/lib/components/code-editor/helpers/r-helper.spec.ts +39 -0
- package/src/lib/components/code-editor/helpers/r-helper.ts +32 -0
- package/src/lib/components/code-editor/helpers/ruby-helper.spec.ts +39 -0
- package/src/lib/components/code-editor/helpers/ruby-helper.ts +32 -0
- package/src/lib/components/code-editor/helpers/scala-helper.spec.ts +41 -0
- package/src/lib/components/code-editor/helpers/scala-helper.ts +53 -0
- package/src/lib/components/code-editor/helpers/sql-helper.spec.ts +87 -0
- package/src/lib/components/code-editor/helpers/sql-helper.ts +44 -0
- package/src/lib/components/code-editor/helpers/swift-helper.spec.ts +40 -0
- package/src/lib/components/code-editor/helpers/swift-helper.ts +51 -0
- package/src/lib/components/code-editor/helpers/typescript-helper.spec.ts +40 -0
- package/src/lib/components/code-editor/helpers/typescript-helper.ts +52 -0
- package/src/lib/components/code-editor/models/code-editor.model.ts +9 -0
- package/src/lib/components/code-editor/models/coding-snapshot.model.ts +4 -0
- package/src/lib/components/coding-question/coding-question.component.html +78 -0
- package/src/lib/components/coding-question/coding-question.component.scss +76 -0
- package/src/lib/components/coding-question/coding-question.component.spec.ts +85 -0
- package/src/lib/components/coding-question/coding-question.component.ts +102 -0
- package/src/lib/components/coding-section/coding-section.component.html +82 -0
- package/src/lib/components/coding-section/coding-section.component.scss +64 -0
- package/src/lib/components/coding-section/coding-section.component.spec.ts +257 -0
- package/src/lib/components/coding-section/coding-section.component.ts +187 -0
- package/src/lib/components/coding-test.module.ts +124 -0
- package/src/lib/components/common/truncated-text/truncated-text.component.html +6 -0
- package/src/lib/components/common/truncated-text/truncated-text.component.scss +18 -0
- package/src/lib/components/common/truncated-text/truncated-text.component.spec.ts +84 -0
- package/src/lib/components/common/truncated-text/truncated-text.component.ts +37 -0
- package/src/lib/components/configurations/configurations.component.html +57 -0
- package/src/lib/components/configurations/configurations.component.scss +42 -0
- package/src/lib/components/configurations/configurations.component.spec.ts +186 -0
- package/src/lib/components/configurations/configurations.component.ts +98 -0
- package/src/lib/components/instructions/instructions.component.html +41 -0
- package/src/lib/components/instructions/instructions.component.scss +167 -0
- package/src/lib/components/instructions/instructions.component.spec.ts +106 -0
- package/src/lib/components/instructions/instructions.component.ts +138 -0
- package/src/lib/components/panel/panel.component.html +19 -0
- package/src/lib/components/panel/panel.component.scss +41 -0
- package/src/lib/components/panel/panel.component.spec.ts +40 -0
- package/src/lib/components/panel/panel.component.ts +34 -0
- package/src/lib/components/runnable-editor/runnable-editor.component.html +75 -0
- package/src/lib/components/runnable-editor/runnable-editor.component.scss +55 -0
- package/src/lib/components/runnable-editor/runnable-editor.component.spec.ts +124 -0
- package/src/lib/components/runnable-editor/runnable-editor.component.ts +155 -0
- package/src/lib/components/tests/test-cases/test-cases.component.html +135 -0
- package/src/lib/components/tests/test-cases/test-cases.component.scss +220 -0
- package/src/lib/components/tests/test-cases/test-cases.component.spec.ts +401 -0
- package/src/lib/components/tests/test-cases/test-cases.component.ts +205 -0
- package/src/lib/components/tests/test-cases-content/test-cases-content.component.html +94 -0
- package/src/lib/components/tests/test-cases-content/test-cases-content.component.scss +103 -0
- package/src/lib/components/tests/test-cases-content/test-cases-content.component.spec.ts +122 -0
- package/src/lib/components/tests/test-cases-content/test-cases-content.component.ts +102 -0
- package/src/lib/components/tests/test-cases-status/test-cases-status.component.html +16 -0
- package/src/lib/components/tests/test-cases-status/test-cases-status.component.scss +49 -0
- package/src/lib/components/tests/test-cases-status/test-cases-status.component.spec.ts +22 -0
- package/src/lib/components/tests/test-cases-status/test-cases-status.component.ts +18 -0
- package/src/lib/components/tests/test-results.component.html +119 -0
- package/src/lib/components/tests/test-results.component.scss +189 -0
- package/src/lib/components/tests/test-results.component.spec.ts +140 -0
- package/src/lib/components/tests/test-results.component.ts +98 -0
- package/src/lib/components/tgo-coding-test/tgo-coding-test.component.html +96 -0
- package/src/lib/components/tgo-coding-test/tgo-coding-test.component.scss +6 -0
- package/src/lib/components/tgo-coding-test/tgo-coding-test.component.spec.ts +599 -0
- package/src/lib/components/tgo-coding-test/tgo-coding-test.component.ts +279 -0
- package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.html +36 -0
- package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.scss +183 -0
- package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.spec.ts +883 -0
- package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.ts +575 -0
- package/src/lib/config/index.ts +3 -0
- package/src/lib/config/tgo-coding-test.config.ts +26 -0
- package/src/lib/config/tgo-coding-test.provider.ts +38 -0
- package/src/lib/config/tgo-coding-test.token.ts +21 -0
- package/src/lib/models/.gitkeep +0 -0
- package/src/lib/models/auto-saved-data.ts +51 -0
- package/src/lib/models/code-event.ts +17 -0
- package/src/lib/models/coderunner-execution-results.ts +58 -0
- package/src/lib/models/coding-lib.mocks.ts +246 -0
- package/src/lib/models/configs.ts +18 -0
- package/src/lib/models/language-change-action.ts +4 -0
- package/src/lib/models/lat-languages.ts +12 -0
- package/src/lib/models/mixpanel-events.ts +3 -0
- package/src/lib/models/mode.ts +5 -0
- package/src/lib/models/paste-data.ts +4 -0
- package/src/lib/models/programming-language.ts +9 -0
- package/src/lib/models/test-cases.ts +74 -0
- package/src/lib/models/theme.ts +5 -0
- package/src/lib/models/translations.ts +1 -0
- package/src/lib/models/view-mode.ts +6 -0
- package/src/lib/pipes/memoize-func.pipe.ts +34 -0
- package/src/lib/services/.gitkeep +0 -0
- package/src/lib/services/candidate-coding-test-services/candidature-api.service.spec.ts +40 -0
- package/src/lib/services/candidate-coding-test-services/candidature-api.service.ts +15 -0
- package/src/lib/services/candidate-coding-test-services/coderunner-api.service.spec.ts +134 -0
- package/src/lib/services/candidate-coding-test-services/coderunner-api.service.ts +105 -0
- package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.spec.ts +161 -0
- package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.ts +100 -0
- package/src/lib/services/candidate-coding-test-services/coding-test.service.spec.ts +1524 -0
- package/src/lib/services/candidate-coding-test-services/coding-test.service.ts +843 -0
- package/src/lib/services/candidate-coding-test-services/index.ts +4 -0
- package/src/lib/services/coding-test-config.service.ts +48 -0
- package/src/lib/services/configurations.service.mocks.ts +77 -0
- package/src/lib/services/configurations.service.spec.ts +79 -0
- package/src/lib/services/configurations.service.ts +111 -0
- package/src/lib/services/index.ts +0 -0
- package/src/lib/services/lib-coding-test.service.spec.ts +265 -0
- package/src/lib/services/lib-coding-test.service.ts +157 -0
- package/src/lib/services/local-storage.service.mocks.ts +22 -0
- package/src/lib/services/storage.service.spec.ts +1120 -0
- package/src/lib/services/storage.service.ts +729 -0
- package/src/lib/services/test-cases.service.spec.ts +53 -0
- package/src/lib/services/test-cases.service.ts +29 -0
- package/src/lib/services/theme.service.spec.ts +76 -0
- package/src/lib/services/theme.service.ts +34 -0
- package/src/lib/styles/mixins.scss +86 -0
- package/src/lib/styles/styles.scss +112 -0
- package/src/lib/styles/variables.scss +105 -0
- package/src/lib/utils/.gitkeep +0 -0
- package/src/lib/utils/additional-languages/erlang.ts +115 -0
- package/src/lib/utils/resize-element.ts +15 -0
- package/src/lib/utils/time-to-ms.util.ts +10 -0
- package/src/test-setup.ts +1 -0
- package/tsconfig.json +16 -0
- package/tsconfig.lib.json +12 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +13 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
@import "../../styles/mixins";
|
|
2
|
+
|
|
3
|
+
@include as-split-styles();
|
|
4
|
+
|
|
5
|
+
:host {
|
|
6
|
+
display: block;
|
|
7
|
+
height: 100%;
|
|
8
|
+
|
|
9
|
+
@media screen and (max-width: 959px) {
|
|
10
|
+
flex: 1 0 600px;
|
|
11
|
+
height: auto;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ide {
|
|
16
|
+
&-split-area {
|
|
17
|
+
// prevents resizing to 0, set threshold
|
|
18
|
+
min-height: 65px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&-container {
|
|
22
|
+
height: 100%;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.tests {
|
|
27
|
+
height: 100%;
|
|
28
|
+
|
|
29
|
+
&-lat {
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
|
|
32
|
+
@media screen and (max-width: 959px) {
|
|
33
|
+
flex: 1 0 60vh;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.coding-section {
|
|
39
|
+
display: block;
|
|
40
|
+
height: 100%;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.container-mobile {
|
|
44
|
+
height: 100%;
|
|
45
|
+
display: flex;
|
|
46
|
+
flex-direction: column;
|
|
47
|
+
|
|
48
|
+
.ide-container {
|
|
49
|
+
max-height: 60vh;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.tests {
|
|
53
|
+
max-height: 60vh;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { ComponentFixture, discardPeriodicTasks, fakeAsync, flush, TestBed, tick } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { ChangeDetectorRef, ElementRef, NO_ERRORS_SCHEMA } from '@angular/core';
|
|
4
|
+
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
5
|
+
import { MockProvider } from 'ng-mocks';
|
|
6
|
+
import { BehaviorSubject, of, Subject } from 'rxjs';
|
|
7
|
+
import { MonacoEditorModule } from 'ngx-monaco-editor-v2';
|
|
8
|
+
import { RunnableEditorComponent } from './runnable-editor.component';
|
|
9
|
+
import { LibCodingTestService } from '../../services/lib-coding-test.service';
|
|
10
|
+
import { ConfigurationsService } from '../../services/configurations.service';
|
|
11
|
+
import { StorageCodingService } from '../../services/storage.service';
|
|
12
|
+
import { CodeEditorLanguages } from '../code-editor/helpers/code-editor-helper.model';
|
|
13
|
+
import { CONFIGURATIONS_SERVICE_MOCK } from '../../services/configurations.service.mocks';
|
|
14
|
+
|
|
15
|
+
jest.mock('../../utils/resize-element', () => ({
|
|
16
|
+
resizeElement: jest.fn(el => of(el)),
|
|
17
|
+
}));
|
|
18
|
+
|
|
19
|
+
describe('RunnableEditorComponent', () => {
|
|
20
|
+
let component: RunnableEditorComponent;
|
|
21
|
+
let fixture: ComponentFixture<RunnableEditorComponent>;
|
|
22
|
+
const codingTestsSplitRefMock = {
|
|
23
|
+
nativeElement: {
|
|
24
|
+
offsetHeight: 200,
|
|
25
|
+
contentRect: { height: 250 },
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
const testsSplitAreaRefMock = {
|
|
29
|
+
nativeElement: {
|
|
30
|
+
offsetHeight: 50,
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
jest.useFakeTimers();
|
|
34
|
+
|
|
35
|
+
beforeEach(async () => {
|
|
36
|
+
await TestBed.configureTestingModule({
|
|
37
|
+
imports: [RunnableEditorComponent, MonacoEditorModule.forRoot(), NoopAnimationsModule],
|
|
38
|
+
schemas: [NO_ERRORS_SCHEMA],
|
|
39
|
+
providers: [
|
|
40
|
+
MockProvider(ChangeDetectorRef),
|
|
41
|
+
MockProvider(LibCodingTestService, {
|
|
42
|
+
codeChange$: new Subject(),
|
|
43
|
+
isBoilerplateLoading$: new Subject(),
|
|
44
|
+
languageChange$: new Subject(),
|
|
45
|
+
codeReset$: new Subject(),
|
|
46
|
+
currentLanguage$: new BehaviorSubject<CodeEditorLanguages>(CodeEditorLanguages.Javascript),
|
|
47
|
+
}),
|
|
48
|
+
MockProvider(ConfigurationsService, CONFIGURATIONS_SERVICE_MOCK),
|
|
49
|
+
MockProvider(StorageCodingService),
|
|
50
|
+
],
|
|
51
|
+
}).compileComponents();
|
|
52
|
+
|
|
53
|
+
fixture = TestBed.createComponent(RunnableEditorComponent);
|
|
54
|
+
component = fixture.componentInstance;
|
|
55
|
+
component.isMobile = true;
|
|
56
|
+
component.translations = {
|
|
57
|
+
HEADINGS: {},
|
|
58
|
+
TOOLTIPS: { RESET_CODE: '' },
|
|
59
|
+
TEST_RESULTS: {
|
|
60
|
+
RUN_TESTS: '',
|
|
61
|
+
TEST_CASES: {},
|
|
62
|
+
},
|
|
63
|
+
MODALS: { RESET_CODE: {} },
|
|
64
|
+
}; // Provide translations to prevent template errors
|
|
65
|
+
component.codingTestsSplitRef = { ...codingTestsSplitRefMock } as ElementRef;
|
|
66
|
+
component.testsSplitAreaRef = { ...testsSplitAreaRefMock } as ElementRef;
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
describe('when the view is initialized', () => {
|
|
70
|
+
describe('and isMobile === true', () => {
|
|
71
|
+
it('should NOT set up minTestsSplitHeight', () => {
|
|
72
|
+
expect(component.minTestsSplitHeight).toBeFalsy();
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
describe('and isMobile === false', () => {
|
|
77
|
+
beforeEach(() => {
|
|
78
|
+
component.isMobile = false;
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
describe('and isFullViewMode === true', () => {
|
|
82
|
+
beforeEach(() => {
|
|
83
|
+
component.isFullViewMode = true;
|
|
84
|
+
component.ngAfterViewInit();
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
it('should set minTestsSplitHeight according to codingTestsSplitRef height', fakeAsync(() => {
|
|
88
|
+
tick();
|
|
89
|
+
jest.runAllTimers();
|
|
90
|
+
expect(component.minTestsSplitHeight).toEqual(47.6);
|
|
91
|
+
flush();
|
|
92
|
+
discardPeriodicTasks();
|
|
93
|
+
}));
|
|
94
|
+
|
|
95
|
+
it('should set currentTestsSplitHeight according to testsPercentHeight', fakeAsync(() => {
|
|
96
|
+
tick();
|
|
97
|
+
jest.runAllTimers();
|
|
98
|
+
|
|
99
|
+
expect(component.currentTestsSplitHeight).toEqual(47.6);
|
|
100
|
+
flush();
|
|
101
|
+
discardPeriodicTasks();
|
|
102
|
+
}));
|
|
103
|
+
|
|
104
|
+
it('should set currentIdeSplitHeight according to currentTestsSplitHeight', fakeAsync(() => {
|
|
105
|
+
tick();
|
|
106
|
+
jest.runAllTimers();
|
|
107
|
+
expect(component.currentIdeSplitHeight).toEqual(52.4);
|
|
108
|
+
flush();
|
|
109
|
+
discardPeriodicTasks();
|
|
110
|
+
}));
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
describe('and isFullViewMode === false', () => {
|
|
114
|
+
beforeEach(() => {
|
|
115
|
+
component.ngAfterViewInit();
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
it('should set minTestsSplitHeight according to codingTestsSplitRef height', () => {
|
|
119
|
+
expect(component.minTestsSplitHeight).toEqual(59.5);
|
|
120
|
+
});
|
|
121
|
+
});
|
|
122
|
+
});
|
|
123
|
+
});
|
|
124
|
+
});
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AfterViewInit,
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
ChangeDetectorRef,
|
|
5
|
+
Component,
|
|
6
|
+
ElementRef,
|
|
7
|
+
EventEmitter,
|
|
8
|
+
Input,
|
|
9
|
+
Output,
|
|
10
|
+
ViewChild,
|
|
11
|
+
} from '@angular/core';
|
|
12
|
+
import { CommonModule } from '@angular/common';
|
|
13
|
+
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
|
|
14
|
+
import {
|
|
15
|
+
animationFrameScheduler,
|
|
16
|
+
concat,
|
|
17
|
+
debounceTime,
|
|
18
|
+
distinctUntilChanged,
|
|
19
|
+
map,
|
|
20
|
+
Observable,
|
|
21
|
+
observeOn,
|
|
22
|
+
of,
|
|
23
|
+
} from 'rxjs';
|
|
24
|
+
import { AngularSplitModule } from 'angular-split';
|
|
25
|
+
import { ApplicationTheme } from '@testgorilla/tgo-ui';
|
|
26
|
+
|
|
27
|
+
import { LATLanguages } from '../../models/lat-languages';
|
|
28
|
+
import { ExampleTestCase } from '../../models/test-cases';
|
|
29
|
+
import { resizeElement } from '../../utils/resize-element';
|
|
30
|
+
import {
|
|
31
|
+
CodeEditorFuncParam,
|
|
32
|
+
CodeEditorLanguages,
|
|
33
|
+
CodeEditorTypesMap,
|
|
34
|
+
} from '../code-editor/helpers/code-editor-helper.model';
|
|
35
|
+
import { PasteData } from '../code-editor/models/code-editor.model';
|
|
36
|
+
import { CodingSectionComponent } from '../coding-section/coding-section.component';
|
|
37
|
+
import { ConfigurationsComponent } from '../configurations/configurations.component';
|
|
38
|
+
import { TestResultsComponent } from '../tests/test-results.component';
|
|
39
|
+
|
|
40
|
+
@UntilDestroy()
|
|
41
|
+
@Component({
|
|
42
|
+
standalone: true,
|
|
43
|
+
selector: 'tgo-runnable-editor',
|
|
44
|
+
templateUrl: './runnable-editor.component.html',
|
|
45
|
+
styleUrls: ['./runnable-editor.component.scss'],
|
|
46
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
47
|
+
imports: [
|
|
48
|
+
CommonModule,
|
|
49
|
+
AngularSplitModule,
|
|
50
|
+
CodingSectionComponent,
|
|
51
|
+
ConfigurationsComponent,
|
|
52
|
+
TestResultsComponent,
|
|
53
|
+
],
|
|
54
|
+
})
|
|
55
|
+
export class RunnableEditorComponent implements AfterViewInit {
|
|
56
|
+
@Input() initCode: string;
|
|
57
|
+
@Input() functionParams: CodeEditorFuncParam[];
|
|
58
|
+
@Input() functionName: string;
|
|
59
|
+
@Input() returnType: keyof CodeEditorTypesMap;
|
|
60
|
+
@Input() isFullViewMode: boolean;
|
|
61
|
+
@Input() isLAT: boolean;
|
|
62
|
+
@Input() isSQL: boolean;
|
|
63
|
+
@Input() canAddCustomTestCases: boolean;
|
|
64
|
+
@Input() hideTestCases: boolean;
|
|
65
|
+
@Input() languages: LATLanguages;
|
|
66
|
+
@Input() shouldGenerateInitCode: boolean;
|
|
67
|
+
@Input() autoHeight: boolean;
|
|
68
|
+
@Input() translations: Record<string, unknown>;
|
|
69
|
+
@Input() questionText: string;
|
|
70
|
+
@Input() companyColor: string;
|
|
71
|
+
@Input() testCasesStatus: any;
|
|
72
|
+
@Input() loading: boolean;
|
|
73
|
+
@Input() runTestResponse = [];
|
|
74
|
+
@Input() exampleTestCases: ExampleTestCase[];
|
|
75
|
+
@Input() isRunnableWithLangSelector: boolean;
|
|
76
|
+
@Input() applicationTheme: ApplicationTheme;
|
|
77
|
+
|
|
78
|
+
@Output() pasteEvent = new EventEmitter<PasteData>();
|
|
79
|
+
@Output() codeChange = new EventEmitter<string>();
|
|
80
|
+
@Output() runTestClick = new EventEmitter<boolean>();
|
|
81
|
+
@Output() languageChange = new EventEmitter<CodeEditorLanguages>();
|
|
82
|
+
|
|
83
|
+
@ViewChild('codingTestsSplit', { read: ElementRef }) codingTestsSplitRef: ElementRef;
|
|
84
|
+
@ViewChild('testsSplitArea', { read: ElementRef }) testsSplitAreaRef: ElementRef;
|
|
85
|
+
|
|
86
|
+
minTestsSplitHeight: number;
|
|
87
|
+
currentIdeSplitHeight = 55;
|
|
88
|
+
currentTestsSplitHeight = 45;
|
|
89
|
+
|
|
90
|
+
MIN_TESTS_HEIGHT_PX = 119;
|
|
91
|
+
MIN_LAT_TESTS_HEIGHT_PX = 202;
|
|
92
|
+
GUTTER_SIZE = 1;
|
|
93
|
+
|
|
94
|
+
isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
|
|
95
|
+
|
|
96
|
+
constructor(private changeDetectorRef: ChangeDetectorRef) {}
|
|
97
|
+
|
|
98
|
+
ngAfterViewInit(): void {
|
|
99
|
+
if (this.isMobile) {
|
|
100
|
+
return;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (this.isFullViewMode) {
|
|
104
|
+
this.setCodingSplitListener();
|
|
105
|
+
} else {
|
|
106
|
+
const { offsetHeight: height } = this.codingTestsSplitRef.nativeElement;
|
|
107
|
+
this.minTestsSplitHeight = this.getMinTestsPercentHeight(height);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/* listens to area height changes and calculates the maximum % size of coding window area */
|
|
112
|
+
private setCodingSplitListener(): void {
|
|
113
|
+
concat(this.getInitialMaxHeight$(), resizeElement(this.codingTestsSplitRef.nativeElement))
|
|
114
|
+
.pipe(
|
|
115
|
+
observeOn(animationFrameScheduler),
|
|
116
|
+
debounceTime(300),
|
|
117
|
+
map(({ contentRect: { height } }) => height),
|
|
118
|
+
distinctUntilChanged(),
|
|
119
|
+
untilDestroyed(this)
|
|
120
|
+
)
|
|
121
|
+
.subscribe(height => {
|
|
122
|
+
this.calculateCurrentHeights(height);
|
|
123
|
+
|
|
124
|
+
this.changeDetectorRef.detectChanges();
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
private calculateCurrentHeights(fullHeight: number): void {
|
|
129
|
+
const { offsetHeight: testsSplitHeight } = this.testsSplitAreaRef.nativeElement;
|
|
130
|
+
this.minTestsSplitHeight = this.getMinTestsPercentHeight(fullHeight);
|
|
131
|
+
|
|
132
|
+
let testsPercentHeight = this.getPercentHeightFromWhole(fullHeight, testsSplitHeight);
|
|
133
|
+
|
|
134
|
+
if (testsPercentHeight < this.minTestsSplitHeight) {
|
|
135
|
+
testsPercentHeight = this.minTestsSplitHeight;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
this.currentTestsSplitHeight = testsPercentHeight;
|
|
139
|
+
this.currentIdeSplitHeight = 100 - this.currentTestsSplitHeight;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
private getInitialMaxHeight$(): Observable<any> {
|
|
143
|
+
const { offsetHeight: height } = this.codingTestsSplitRef.nativeElement;
|
|
144
|
+
return of({ contentRect: { height: this.getMinTestsPercentHeight(height) } });
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
private getPercentHeightFromWhole(fullHeight: number, areaHeight: number): number {
|
|
148
|
+
return (areaHeight * 100) / (fullHeight - this.GUTTER_SIZE * 2);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
private getMinTestsPercentHeight(height: number): number {
|
|
152
|
+
const minTestsHeightPx = this.isLAT ? this.MIN_LAT_TESTS_HEIGHT_PX : this.MIN_TESTS_HEIGHT_PX;
|
|
153
|
+
return (minTestsHeightPx * 100) / height;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
<div class="test-case-container">
|
|
2
|
+
<div
|
|
3
|
+
id="test-cases"
|
|
4
|
+
class="test-case-tabs-wrapper"
|
|
5
|
+
[ngClass]="{
|
|
6
|
+
'test-case-tabs-wrapper-tests-run': areTestsRun,
|
|
7
|
+
'test-case-tabs-wrapper-mobile': isMobile,
|
|
8
|
+
'test-case-tabs-wrapper-hidden': isContentViewOpened
|
|
9
|
+
}"
|
|
10
|
+
>
|
|
11
|
+
@if (!isMobile) {
|
|
12
|
+
<mat-tab-group
|
|
13
|
+
#tabGroup
|
|
14
|
+
class="test-cases-tabs"
|
|
15
|
+
[selectedIndex]="activeTestCaseIndex"
|
|
16
|
+
(selectedIndexChange)="setActiveTestCaseIndex($event)"
|
|
17
|
+
>
|
|
18
|
+
@for (testCase of testCases; track testCase; let index = $index) {
|
|
19
|
+
<mat-tab label="{{ testCase.name }}">
|
|
20
|
+
<ng-template mat-tab-label>
|
|
21
|
+
<div class="tab-label-wrapper">
|
|
22
|
+
<ng-container
|
|
23
|
+
[ngTemplateOutlet]="testCaseHeading"
|
|
24
|
+
[ngTemplateOutletContext]="{ testCase: testCase, index: index }"
|
|
25
|
+
></ng-container>
|
|
26
|
+
</div>
|
|
27
|
+
</ng-template>
|
|
28
|
+
</mat-tab>
|
|
29
|
+
}
|
|
30
|
+
</mat-tab-group>
|
|
31
|
+
} @else {
|
|
32
|
+
<div class="test-cases-tabs test-cases-tabs-mobile">
|
|
33
|
+
@for (testCase of testCases; track testCase; let index = $index) {
|
|
34
|
+
<div class="tab-label-wrapper" (click)="setActiveTestCaseIndex(index)">
|
|
35
|
+
<div class="test-case-name-status-wrapper">
|
|
36
|
+
<ng-container
|
|
37
|
+
[ngTemplateOutlet]="testCaseHeading"
|
|
38
|
+
[ngTemplateOutletContext]="{ testCase: testCase, index: index }"
|
|
39
|
+
></ng-container>
|
|
40
|
+
</div>
|
|
41
|
+
@if (isMobile) {
|
|
42
|
+
<ui-icon [name]="'Arrow-chevron-right-filled'" [size]="'24'" class="themed-button"></ui-icon>
|
|
43
|
+
}
|
|
44
|
+
</div>
|
|
45
|
+
}
|
|
46
|
+
</div>
|
|
47
|
+
} @if (canAddCustomTestCases) {
|
|
48
|
+
<ui-button
|
|
49
|
+
class="add-test-case themed-button"
|
|
50
|
+
[variant]="'tertiary'"
|
|
51
|
+
[iconName]="'Plus'"
|
|
52
|
+
[iconPosition]="'left'"
|
|
53
|
+
[disabled]="!isAddTestCasesDisabled"
|
|
54
|
+
[fullWidth]="true"
|
|
55
|
+
[tooltip]="!isAddTestCasesDisabled ? translations['TOOLTIPS']['CANT_ADD_TEST_CASE'] : null"
|
|
56
|
+
[label]="
|
|
57
|
+
translations['TEST_RESULTS']['TEST_CASES']['ADD_TEST_CASE'] +
|
|
58
|
+
' (' +
|
|
59
|
+
(testCases?.length - exampleTestCases?.length) +
|
|
60
|
+
'/' +
|
|
61
|
+
maxTestCasesAllowed +
|
|
62
|
+
')'
|
|
63
|
+
"
|
|
64
|
+
(buttonClickEvent)="addTestCase()"
|
|
65
|
+
>
|
|
66
|
+
</ui-button>
|
|
67
|
+
}
|
|
68
|
+
</div>
|
|
69
|
+
|
|
70
|
+
@if (!isMobile) {
|
|
71
|
+
<div class="test-case-content-wrapper">
|
|
72
|
+
<ng-container [ngTemplateOutlet]="testCasesContentTpl"></ng-container>
|
|
73
|
+
</div>
|
|
74
|
+
} @if (isMobile && isContentViewOpened) {
|
|
75
|
+
<div class="test-case-content-wrapper-mobile">
|
|
76
|
+
<div class="test-case-mobile-name-wrapper">
|
|
77
|
+
<ui-button
|
|
78
|
+
[variant]="'icon-button'"
|
|
79
|
+
[iconName]="'Arrow-chevron-left-filled'"
|
|
80
|
+
[tooltip]="''"
|
|
81
|
+
[size]="'small'"
|
|
82
|
+
(buttonClickEvent)="closeTestCaseMobileView()"
|
|
83
|
+
class="themed-button"
|
|
84
|
+
>
|
|
85
|
+
</ui-button>
|
|
86
|
+
<ng-container
|
|
87
|
+
[ngTemplateOutlet]="testCaseHeading"
|
|
88
|
+
[ngTemplateOutletContext]="{
|
|
89
|
+
testCase: testCases[activeTestCaseIndex],
|
|
90
|
+
index: activeTestCaseIndex,
|
|
91
|
+
hideStatus: true
|
|
92
|
+
}"
|
|
93
|
+
></ng-container>
|
|
94
|
+
</div>
|
|
95
|
+
<ng-container [ngTemplateOutlet]="testCasesContentTpl"></ng-container>
|
|
96
|
+
</div>
|
|
97
|
+
}
|
|
98
|
+
</div>
|
|
99
|
+
|
|
100
|
+
<ng-template #testCaseHeading let-testCase="testCase" let-index="index" let-hideStatus="hideStatus">
|
|
101
|
+
<div class="tab-label">
|
|
102
|
+
@if (testCase.preloaded) {
|
|
103
|
+
<ui-icon [name]="'Lock'" class="preloaded-icon"></ui-icon>
|
|
104
|
+
}
|
|
105
|
+
<span class="tab-label-value">{{ testCase.name }}</span>
|
|
106
|
+
</div>
|
|
107
|
+
|
|
108
|
+
@if (!hideStatus && testCasesResult?.length) {
|
|
109
|
+
<tgo-test-cases-status
|
|
110
|
+
[status]="testCasesResult?.[index]?.status"
|
|
111
|
+
[translations]="translations['TEST_RESULTS']['TEST_CASES']['STATUSES']"
|
|
112
|
+
></tgo-test-cases-status>
|
|
113
|
+
} @if (!testCase.preloaded) {
|
|
114
|
+
<ui-button
|
|
115
|
+
[variant]="'icon-button'"
|
|
116
|
+
[iconName]="'Delete'"
|
|
117
|
+
[tooltip]="translations['TOOLTIPS']['DELETE_TEST_CASE'] || ''"
|
|
118
|
+
(buttonClickEvent)="removeTestCase(index)"
|
|
119
|
+
class="delete-test-case themed-button"
|
|
120
|
+
>
|
|
121
|
+
</ui-button>
|
|
122
|
+
}
|
|
123
|
+
</ng-template>
|
|
124
|
+
|
|
125
|
+
<ng-template #testCasesContentTpl>
|
|
126
|
+
<tgo-test-cases-content
|
|
127
|
+
[testCase]="testCases[activeTestCaseIndex]"
|
|
128
|
+
[testCaseResult]="testCasesResult?.[activeTestCaseIndex]"
|
|
129
|
+
[areTestsRun]="areTestsRun"
|
|
130
|
+
[translations]="translations['TEST_RESULTS']['TEST_CASES']"
|
|
131
|
+
[isSQL]="isSQL"
|
|
132
|
+
[applicationTheme]="applicationTheme"
|
|
133
|
+
(valueChange)="modifyTestCase(activeTestCaseIndex, $event)"
|
|
134
|
+
></tgo-test-cases-content>
|
|
135
|
+
</ng-template>
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
@import '@testgorilla/tgo-ui/projects/tgo-canopy-ui/theme/variables';
|
|
2
|
+
|
|
3
|
+
//todo: fix powered by testgorilla logo position on mobile in scope of https://testgorilla.atlassian.net/browse/CODE-367
|
|
4
|
+
.test-case-container {
|
|
5
|
+
display: flex;
|
|
6
|
+
height: 100%;
|
|
7
|
+
|
|
8
|
+
.test-case-tabs-wrapper {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
position: relative;
|
|
12
|
+
overflow-y: auto;
|
|
13
|
+
border-right: 1px solid var(--border-bg-color);
|
|
14
|
+
height: 100%;
|
|
15
|
+
min-width: 230px;
|
|
16
|
+
|
|
17
|
+
&-mobile {
|
|
18
|
+
flex: 1;
|
|
19
|
+
|
|
20
|
+
&.test-case-tabs-wrapper-hidden {
|
|
21
|
+
display: none;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:not(&-mobile) {
|
|
26
|
+
::ng-deep {
|
|
27
|
+
.mat-mdc-tab {
|
|
28
|
+
.mdc-tab-indicator {
|
|
29
|
+
width: 3px;
|
|
30
|
+
|
|
31
|
+
.mdc-tab-indicator__content {
|
|
32
|
+
border-left: 3px solid transparent;
|
|
33
|
+
height: 100%;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:hover .delete-test-case {
|
|
38
|
+
display: block;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&.mdc-tab--active {
|
|
42
|
+
.tab-label-value {
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.mdc-tab-indicator__content {
|
|
47
|
+
border-left-color: var(--company-color, $brand-50);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.test-cases-tabs {
|
|
55
|
+
flex-direction: row;
|
|
56
|
+
flex-grow: 1;
|
|
57
|
+
|
|
58
|
+
::ng-deep {
|
|
59
|
+
.mdc-tab__content {
|
|
60
|
+
justify-content: flex-start;
|
|
61
|
+
padding: 14px 16px;
|
|
62
|
+
width: 100%;
|
|
63
|
+
|
|
64
|
+
.mdc-tab__text-label {
|
|
65
|
+
flex-grow: 1;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.tab-label-wrapper {
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
justify-content: space-between;
|
|
72
|
+
width: 100%;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.mat-mdc-tab-labels {
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.mat-mdc-tab-header {
|
|
81
|
+
width: 100%;
|
|
82
|
+
border-bottom: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.mdc-tab {
|
|
86
|
+
height: 48px;
|
|
87
|
+
padding: 0;
|
|
88
|
+
border-bottom: 1px solid var(--border-bg-color);
|
|
89
|
+
color: var(--secondary-text-color);
|
|
90
|
+
|
|
91
|
+
&__text-label {
|
|
92
|
+
width: 100%;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
&.mat-mdc-tab-group.mat-primary {
|
|
98
|
+
::ng-deep {
|
|
99
|
+
.mat-ink-bar {
|
|
100
|
+
background-color: transparent;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&-mobile {
|
|
106
|
+
.test-case-name-status-wrapper {
|
|
107
|
+
display: flex;
|
|
108
|
+
justify-content: space-between;
|
|
109
|
+
flex: 1;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.tab-label-wrapper {
|
|
113
|
+
display: flex;
|
|
114
|
+
padding: 14px 16px;
|
|
115
|
+
cursor: pointer;
|
|
116
|
+
border-bottom: 1px solid var(--border-bg-color);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.add-test-case {
|
|
122
|
+
position: sticky;
|
|
123
|
+
bottom: 0;
|
|
124
|
+
left: 0;
|
|
125
|
+
right: 0;
|
|
126
|
+
border-top: 1px solid var(--border-bg-color);
|
|
127
|
+
border-radius: 0;
|
|
128
|
+
z-index: 1;
|
|
129
|
+
|
|
130
|
+
::ng-deep {
|
|
131
|
+
mat-icon {
|
|
132
|
+
color: var(--company-color, $brand-50);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.mdc-button {
|
|
136
|
+
justify-content: flex-start;
|
|
137
|
+
background-color: var(--bg-mat-card);
|
|
138
|
+
|
|
139
|
+
&:disabled {
|
|
140
|
+
opacity: 1;
|
|
141
|
+
|
|
142
|
+
.mdc-button__label {
|
|
143
|
+
opacity: .75;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
span {
|
|
148
|
+
color: var(--company-theme-specific-color, $brand-50) !important;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.delete-test-case {
|
|
156
|
+
display: none;
|
|
157
|
+
position: absolute;
|
|
158
|
+
right: 16px;
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
|
|
161
|
+
::ng-deep {
|
|
162
|
+
.icon-button:not(:hover) {
|
|
163
|
+
background-color: var(--bg-mat-card) !important;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
svg {
|
|
167
|
+
color: var(--icon-bg-color);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
::ng-deep .mat-tab-label.cdk-program-focused .delete-test-case svg rect {
|
|
173
|
+
fill: #484c4d00;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.test-case-content-wrapper {
|
|
177
|
+
flex-grow: 1;
|
|
178
|
+
overflow-y: auto;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.preloaded-icon {
|
|
182
|
+
margin-right: 4px;
|
|
183
|
+
|
|
184
|
+
::ng-deep {
|
|
185
|
+
mat-icon {
|
|
186
|
+
svg {
|
|
187
|
+
color: var(--icon-secondary-bg-color);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.tab-label {
|
|
194
|
+
display: flex;
|
|
195
|
+
align-items: center;
|
|
196
|
+
color: var(--main-text-color);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.chevron-icon {
|
|
200
|
+
margin-left: 8px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.test-case-content-wrapper-mobile {
|
|
204
|
+
overflow: auto;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.test-case-mobile-name-wrapper {
|
|
208
|
+
display: flex;
|
|
209
|
+
position: relative;
|
|
210
|
+
padding: 14px 16px 0;
|
|
211
|
+
|
|
212
|
+
.chevron-icon {
|
|
213
|
+
margin: 0 4px 0 0;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.delete-test-case {
|
|
217
|
+
display: block;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|