code-mesh-core 0.1.0

High-performance, WASM-powered distributed swarm intelligence core library for concurrent code execution and neural mesh computing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
//! Test fixtures and sample data

use code_mesh_core::{
    llm::{ChatMessage, ChatRole},
    session::Session,
};
use serde_json::Value;
use std::collections::HashMap;

/// Sample chat messages for testing
pub struct ChatFixtures;

impl ChatFixtures {
    pub fn simple_conversation() -> Vec<ChatMessage> {
        vec![
            ChatMessage {
                role: ChatRole::System,
                content: "You are a helpful coding assistant.".to_string(),
            },
            ChatMessage {
                role: ChatRole::User,
                content: "Help me write a function to calculate fibonacci numbers.".to_string(),
            },
            ChatMessage {
                role: ChatRole::Assistant,
                content: "I'll help you write a fibonacci function. Here's an efficient implementation...".to_string(),
            },
        ]
    }

    pub fn tool_conversation() -> Vec<ChatMessage> {
        vec![
            ChatMessage {
                role: ChatRole::System,
                content: "You are an AI assistant with access to file operations.".to_string(),
            },
            ChatMessage {
                role: ChatRole::User,
                content: "Read the contents of README.md".to_string(),
            },
            ChatMessage {
                role: ChatRole::Assistant,
                content: "I'll read the README.md file for you.".to_string(),
            },
        ]
    }

    pub fn long_conversation() -> Vec<ChatMessage> {
        let mut messages = vec![
            ChatMessage {
                role: ChatRole::System,
                content: "You are a helpful assistant.".to_string(),
            }
        ];

        for i in 1..=10 {
            messages.push(ChatMessage {
                role: ChatRole::User,
                content: format!("Question {}: What is {}?", i, i),
            });
            messages.push(ChatMessage {
                role: ChatRole::Assistant,
                content: format!("Answer {}: {} is a number.", i, i),
            });
        }

        messages
    }
}

/// Sample session data for testing
pub struct SessionFixtures;

impl SessionFixtures {
    pub fn basic_session() -> Session {
        Session::new("test-session-123".to_string(), "user-456".to_string())
    }

    pub fn session_with_history() -> Session {
        let mut session = Self::basic_session();
        session.add_message(ChatMessage {
            role: ChatRole::User,
            content: "Hello!".to_string(),
        });
        session.add_message(ChatMessage {
            role: ChatRole::Assistant,
            content: "Hi there! How can I help you today?".to_string(),
        });
        session
    }

    pub fn expired_session() -> Session {
        let mut session = Self::basic_session();
        session.created_at = chrono::Utc::now() - chrono::Duration::days(30);
        session
    }
}

/// File content fixtures for tool testing
pub struct FileFixtures;

impl FileFixtures {
    pub fn rust_source() -> &'static str {
        r#"
use std::collections::HashMap;

/// A simple calculator struct
pub struct Calculator {
    memory: HashMap<String, f64>,
}

impl Calculator {
    pub fn new() -> Self {
        Self {
            memory: HashMap::new(),
        }
    }

    pub fn add(&mut self, a: f64, b: f64) -> f64 {
        a + b
    }

    pub fn subtract(&mut self, a: f64, b: f64) -> f64 {
        a - b
    }

    pub fn store(&mut self, key: String, value: f64) {
        self.memory.insert(key, value);
    }

    pub fn recall(&self, key: &str) -> Option<f64> {
        self.memory.get(key).copied()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_addition() {
        let mut calc = Calculator::new();
        assert_eq!(calc.add(2.0, 3.0), 5.0);
    }

    #[test]
    fn test_subtraction() {
        let mut calc = Calculator::new();
        assert_eq!(calc.subtract(5.0, 3.0), 2.0);
    }

    #[test]
    fn test_memory() {
        let mut calc = Calculator::new();
        calc.store("result".to_string(), 42.0);
        assert_eq!(calc.recall("result"), Some(42.0));
        assert_eq!(calc.recall("nonexistent"), None);
    }
}
"#
    }

    pub fn javascript_source() -> &'static str {
        r#"
class TodoList {
    constructor() {
        this.items = [];
        this.nextId = 1;
    }

    addItem(text) {
        const item = {
            id: this.nextId++,
            text: text,
            completed: false,
            createdAt: new Date()
        };
        this.items.push(item);
        return item;
    }

    completeItem(id) {
        const item = this.items.find(item => item.id === id);
        if (item) {
            item.completed = true;
            item.completedAt = new Date();
        }
        return item;
    }

    removeItem(id) {
        const index = this.items.findIndex(item => item.id === id);
        if (index !== -1) {
            return this.items.splice(index, 1)[0];
        }
        return null;
    }

    getItems() {
        return [...this.items];
    }

    getCompletedItems() {
        return this.items.filter(item => item.completed);
    }

    getPendingItems() {
        return this.items.filter(item => !item.completed);
    }
}

module.exports = TodoList;
"#
    }

    pub fn markdown_content() -> &'static str {
        r#"
# Project Documentation

## Overview

This is a comprehensive documentation for our project.

## Features

- Feature 1: Advanced functionality
- Feature 2: User-friendly interface
- Feature 3: High performance

## Installation

```bash
npm install
npm start
```

## Usage

```javascript
const app = new App();
app.start();
```

## Contributing

Please read our contributing guidelines before submitting pull requests.

### Code Style

We follow these conventions:
- Use 2 spaces for indentation
- Use semicolons
- Use single quotes for strings

## License

MIT License
"#
    }

    pub fn json_config() -> Value {
        serde_json::json!({
            "name": "test-project",
            "version": "1.0.0",
            "author": "Test Author",
            "license": "MIT",
            "dependencies": {
                "lodash": "^4.17.21",
                "express": "^4.18.2",
                "react": "^18.2.0"
            },
            "scripts": {
                "start": "node index.js",
                "test": "jest",
                "build": "webpack --mode production"
            },
            "keywords": ["test", "example", "demo"]
        })
    }

    pub fn yaml_config() -> &'static str {
        r#"
name: CI/CD Pipeline
on:
  push:
    branches: [main, develop]
  pull_request:
    branches: [main]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Setup Node.js
        uses: actions/setup-node@v3
        with:
          node-version: '18'
      - name: Install dependencies
        run: npm ci
      - name: Run tests
        run: npm test
      - name: Upload coverage
        uses: codecov/codecov-action@v3

  build:
    needs: test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Build application
        run: npm run build
      - name: Deploy
        if: github.ref == 'refs/heads/main'
        run: npm run deploy
"#
    }
}

/// Tool parameter fixtures
pub struct ToolFixtures;

impl ToolFixtures {
    pub fn read_file_params() -> Value {
        serde_json::json!({
            "file_path": "/path/to/file.txt"
        })
    }

    pub fn write_file_params() -> Value {
        serde_json::json!({
            "file_path": "/path/to/output.txt",
            "content": "Hello, World!"
        })
    }

    pub fn edit_file_params() -> Value {
        serde_json::json!({
            "file_path": "/path/to/file.txt",
            "old_string": "old content",
            "new_string": "new content"
        })
    }

    pub fn bash_command_params() -> Value {
        serde_json::json!({
            "command": "ls -la",
            "working_directory": "/tmp"
        })
    }

    pub fn web_search_params() -> Value {
        serde_json::json!({
            "query": "rust programming language",
            "num_results": 10
        })
    }

    pub fn glob_pattern_params() -> Value {
        serde_json::json!({
            "pattern": "**/*.rs",
            "exclude": ["target/**", ".git/**"]
        })
    }
}

/// Error scenario fixtures for testing error handling
pub struct ErrorFixtures;

impl ErrorFixtures {
    pub fn network_error_response() -> reqwest::Error {
        // This is a bit tricky to create directly, so we'll use a helper
        reqwest::Error::from(std::io::Error::new(
            std::io::ErrorKind::ConnectionRefused,
            "Connection refused"
        ))
    }

    pub fn invalid_json() -> &'static str {
        r#"{ "invalid": json, missing quotes }"#
    }

    pub fn malformed_chat_message() -> Value {
        serde_json::json!({
            "role": "invalid_role",
            "content": null
        })
    }

    pub fn oversized_content() -> String {
        "x".repeat(10_000_000) // 10MB of x's
    }
}

/// Performance testing fixtures
pub struct PerformanceFixtures;

impl PerformanceFixtures {
    pub fn large_file_content(size_mb: usize) -> String {
        let line = "This is a line of text for performance testing.\n";
        let lines_needed = (size_mb * 1024 * 1024) / line.len();
        line.repeat(lines_needed)
    }

    pub fn many_small_files() -> Vec<(String, String)> {
        (0..1000)
            .map(|i| {
                (
                    format!("file_{:04}.txt", i),
                    format!("Content of file number {}", i),
                )
            })
            .collect()
    }

    pub fn deep_directory_structure() -> Vec<String> {
        let mut paths = Vec::new();
        for depth in 1..=20 {
            let path = (0..depth)
                .map(|i| format!("level_{}", i))
                .collect::<Vec<_>>()
                .join("/");
            paths.push(format!("{}/file.txt", path));
        }
        paths
    }
}
"#