Skip to content

Commit 9cc7790

Browse files
Merge pull request #11 from gjsjohnmurray/fix-10
Handle setups where `objectscript.conn.docker-compose` is used
2 parents 8a6fbdf + c409840 commit 9cc7790

5 files changed

+60
-14
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.2.1 (TBA)
2+
* Discover client-side tests when using `objectscript.conn.docker-compose` settings (#10)
3+
14
## 0.2.0 (22-May-2023)
25
* First published version.
36

README.md

+26-8
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ In order to support topologies in which client-side-managed test classes have to
3636
3737
1. Ensure your VS Code workspace specifies its server connection(s) by referencing server(s) in the `intersystems.servers` configuration object which InterSystems Server Manager maintains. For example, assuming a server named `iris231` has been defined:
3838
39-
- For the client-side paradigm (in `settings.json`, or in `"settings"` object in `xxx.code-workspace` file):
40-
```
39+
- For the **client-side** paradigm (in `settings.json`, or in `"settings"` object in `xxx.code-workspace` file):
40+
```json
4141
"objectscript.conn": {
4242
"server": "iris231",
4343
"ns": "APP",
4444
"active": true
4545
},
4646
```
4747
48-
- For the server-side paradigm (in `xxx.code-workspace` file):
49-
```
48+
- For the **server-side** paradigm (in `xxx.code-workspace` file):
49+
```json
5050
"folders": [
5151
{
5252
"name": "iris231:APP-ISFS",
@@ -57,6 +57,19 @@ In order to support topologies in which client-side-managed test classes have to
5757
5858
> We recommend setting the `username` property of the server definition object, and using Server Manager's secure password storage feature to hold that user's password.
5959
60+
> If you are editing client-side and using the `docker-compose` object within your `objectscript.conn` settings to handle dynamic assignment of the web server port at the host end, omit the `server` property. You will have to put credentials in the settings as plaintext, so this should **only** be done with well-known 'standard' ones such as shown as an example below:
61+
```json
62+
"objectscript.conn" :{
63+
"ns": "APP",
64+
"username": "_SYSTEM",
65+
"password": "SYS",
66+
"docker-compose": {
67+
"service": "iris",
68+
"internalPort": 52773
69+
},
70+
"active": true
71+
},
72+
```
6073
2. For a workspace using client-side editing, test classes are sought in `.cls` files under the `internal/testing/unit_tests` subfolder, using the conventional layout of one additional subfolder per package-name element. If your test classes are located elsewhere, use the `intersystems.testingManager.client.relativeTestRoot` setting to point there.
6174

6275
> By setting this at the workspace level you can have different file layouts for different projects.
@@ -77,6 +90,9 @@ When a test class is open in an editor tab it displays icons in the gutter at th
7790

7891
The `...` menu of the Testing panel in Test Explorer includes several useful commands, including ones to collapse the tree and to clear all locally-stored test results.
7992

93+
## Debugging Tests
94+
After opening a test class, click in the gutter to set a VS Code breakpoint in the normal manner. Then launch the test-run with the Debug option on the context menu of the testing icons in the gutter.
95+
8096
## Recent Testing History
8197

8298
The %UnitTest framework persists results of runs in server-side tables. The 'Recent History' root folder lets you explore the most recent ten sets of results for each server and namespace the workspace uses.
@@ -87,10 +103,12 @@ Hovering on a run's folder reveals an action button which launches %UnitTest's o
87103

88104
This extension is a preview and has some known limitations:
89105

90-
- The extension uses server-side REST support for debugging even when tests are not being debugged. That support is broken in InterSystems IRIS 2021.1.3, and perhaps also in earlier 2021.1.x versions.
91-
- It has only been tested with InterSystems IRIS instances that use the English locale. Its technique for parsing the output from %UnitTest is likely to fail with other locales.
92-
- The `/autoload` feature of %UnitTest is not supported. This is only relevant to the client-side paradigm.
93-
- The loading and deleting of unit test classes which occurs when using the client-side paradigm will raise corresponding events on any source control class that the target namespace may have been configured to use.
106+
- The extension uses server-side REST support for debugging even when tests are not being debugged. That support is broken in InterSystems IRIS 2021.1.3, and maybe also in earlier 2021.1.x versions.
107+
- In client-side mode test-run results don't update the testing icons in the editor gutter or the Local Tests tree in Testing view. Workaround is to view them under the Recent History tree.
108+
- Debugging tests in client-side mode has issues arising from how your workspace stores your test classes outside the source tree of the classes they are testing. Please see the extension's repository (link below) and add new issues if you experience problems not already logged there.
109+
- The extension has only been tested with InterSystems IRIS instances that use the English locale. Its technique for parsing the output from %UnitTest is likely to fail with other locales.
110+
- The `/autoload` feature of %UnitTest is not supported. This is only relevant to client-side mode.
111+
- The loading and deleting of unit test classes which occurs when using client-side mode will raise corresponding events on any source control class that the target namespace may have been configured to use.
94112

95113
## Feedback
96114

src/commonRunTestsHandler.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export async function commonRunTestsHandler(controller: vscode.TestController, r
4545
if (test.uri.scheme === "file") {
4646
// Client-side editing, for which we will assume objectscript.conn names a server defined in `intersystems.servers`
4747
const conn: any = vscode.workspace.getConfiguration("objectscript", test.uri).get("conn");
48-
authority = conn.server + ":" + (conn.ns as string).toLowerCase();
48+
authority = (conn.server || "") + ":" + (conn.ns as string).toLowerCase();
4949
const folder = vscode.workspace.getWorkspaceFolder(test.uri);
5050
if (folder) {
5151
key = key.slice(folder.uri.path.length + relativeTestRoot(folder).length + 1);
@@ -89,7 +89,8 @@ export async function commonRunTestsHandler(controller: vscode.TestController, r
8989
'Test Results',
9090
true
9191
);
92-
const authority = mapInstance[0];
92+
let authority = mapInstance[0];
93+
let query = "";
9394
const mapTestClasses = mapInstance[1];
9495
const firstClassTestItem = Array.from(mapTestClasses.values())[0];
9596
const oneUri = firstClassTestItem.uri;
@@ -126,7 +127,14 @@ export async function commonRunTestsHandler(controller: vscode.TestController, r
126127
}
127128

128129
const username: string = server.username || 'UnknownUser';
129-
const testRoot = vscode.Uri.from({ scheme: 'isfs', authority, path: `/.vscode/UnitTestRoot/${username}` });
130+
131+
// When client-side mode is using 'objectscript.conn.docker-compose the first piece of 'authority' is blank,
132+
if (authority.startsWith(":")) {
133+
const namespace = authority.slice(1).toUpperCase();
134+
query = `ns=${encodeURIComponent(namespace)}`;
135+
authority = folder?.name || "";
136+
}
137+
const testRoot = vscode.Uri.from({ scheme: 'isfs', authority, path: `/.vscode/UnitTestRoot/${username}`, query });
130138
try {
131139
// Limitation of the Atelier API means this can only delete the files, not the folders
132140
// but zombie folders shouldn't cause problems.

src/historyExplorer.ts

+19-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,24 @@ export async function setupHistoryExplorerController() {
4747
}
4848

4949
export async function serverSpec(item: vscode.TestItem): Promise<IServerSpec | undefined> {
50-
return await smAPI.getServerSpec(item.id.split(':')[0]);
50+
const serverName = item.id.split(':')[0];
51+
if (serverName) {
52+
return await smAPI.getServerSpec(serverName);
53+
}
54+
else {
55+
const server = osAPI.serverForUri(item.uri);
56+
const serverSpec: IServerSpec = {
57+
username: server.username,
58+
name: server.serverName,
59+
webServer: {
60+
host: server.host,
61+
port: server.port,
62+
pathPrefix: server.pathPrefix,
63+
scheme: server.scheme
64+
}
65+
};
66+
return serverSpec;
67+
}
5168
}
5269

5370
async function addTestInstances(item: vscode.TestItem, controller: vscode.TestController) {
@@ -244,7 +261,7 @@ export function replaceRootItems(controller: vscode.TestController, schemes?: st
244261
vscode.workspace.workspaceFolders?.forEach(folder => {
245262
if (!schemes || schemes.includes(folder.uri.scheme)) {
246263
const server = osAPI.serverForUri(folder.uri);
247-
if (server?.serverName && server.namespace) {
264+
if (server.namespace) {
248265
const key = server.serverName + ":" + server.namespace.toUpperCase();
249266
if (!rootMap.has(key)) {
250267
const item = controller.createTestItem(key, key, folder.uri);

src/localTests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function replaceLocalRootItems(controller: vscode.TestController) {
9999
vscode.workspace.workspaceFolders?.forEach(folder => {
100100
if (folder.uri.scheme === 'file') {
101101
const server = osAPI.serverForUri(folder.uri);
102-
if (server?.serverName && server.namespace) {
102+
if (server?.namespace) {
103103
const key = server.serverName + ":" + server.namespace + ":";
104104
if (!rootMap.has(key)) {
105105
const relativeRoot = relativeTestRoot(folder);

0 commit comments

Comments
 (0)