File size: 8,484 Bytes
d576ad8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2f0453b
d576ad8
2f0453b
d576ad8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2f0453b
d576ad8
 
 
2f0453b
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
import asyncio
import aiohttp
import time
from faker import Faker


class AuthClient:
    """
    Asynchronous Python client for interacting with the Authentication API
    """
    
    def __init__(self, base_url="http://localhost:7860/api"):
        """
        Initialize the client with the API base URL
        
        Args:
            base_url (str): The base URL of the API
        """
        self.base_url = base_url
        self.token = None
        self.session = None
    
    async def __aenter__(self):
        """Create and enter an aiohttp session"""
        self.session = aiohttp.ClientSession()
        return self
    
    async def __aexit__(self, exc_type, exc_val, exc_tb):
        """Close the aiohttp session"""
        if self.session:
            await self.session.close()
    
    async def _get_session(self):
        """Get or create an aiohttp session"""
        if self.session is None:
            self.session = aiohttp.ClientSession()
        return self.session
    
    async def register(self, email, password):
        """
        Register a new user
        
        Args:
            email (str): User's email
            password (str): User's password (should be at least 8 characters)
            
        Returns:
            dict: The user data returned by the API
            
        Raises:
            Exception: If registration fails
        """
        url = f"{self.base_url}/register"
        data = {
            "email": email,
            "password": password
        }
        
        session = await self._get_session()
        async with session.post(url, json=data) as response:
            if response.status == 201:
                return await response.json()
            else:
                error_data = await response.json()
                error_detail = error_data.get("detail", "Unknown error")
                raise Exception(f"Registration failed: {error_detail} (Status: {response.status})")
    
    async def login(self, email, password):
        """
        Login to obtain an authentication token
        
        Args:
            email (str): User's email
            password (str): User's password
            
        Returns:
            dict: The token data returned by the API
            
        Raises:
            Exception: If login fails
        """
        url = f"{self.base_url}/login"
        data = {
            "email": email,
            "password": password
        }
        
        session = await self._get_session()
        async with session.post(url, json=data) as response:
            if response.status == 200:
                token_data = await response.json()
                self.token = token_data["access_token"]
                return token_data
            else:
                error_data = await response.json()
                error_detail = error_data.get("detail", "Unknown error")
                raise Exception(f"Login failed: {error_detail} (Status: {response.status})")
    
    async def get_current_user(self):
        """
        Get information about the current logged-in user
        
        Returns:
            dict: The user data returned by the API
            
        Raises:
            Exception: If not authenticated or request fails
        """
        if not self.token:
            raise Exception("Not authenticated. Please login first.")
        
        url = f"{self.base_url}/users/me"
        headers = {"Authorization": f"Bearer {self.token}"}
        
        session = await self._get_session()
        async with session.get(url, headers=headers) as response:
            if response.status == 200:
                return await response.json()
            else:
                error_data = await response.json()
                error_detail = error_data.get("detail", "Unknown error")
                raise Exception(f"Failed to get user info: {error_detail} (Status: {response.status})")
    
    def logout(self):
        """Clear the authentication token"""
        self.token = None


# Load testing function
async def load_test(num_users=10, concurrency=5, base_url="https://amaye15-authenticationapp.hf.space/api"):
    """
    Run a load test with multiple simulated users
    
    Args:
        num_users (int): Total number of users to simulate
        concurrency (int): Number of concurrent users
        base_url (str): The base URL of the API
    """
    fake = Faker()
    
    start_time = time.time()
    completed = 0
    success_count = 0
    failure_count = 0
    
    # Semaphore to limit concurrency
    sem = asyncio.Semaphore(concurrency)
    
    # For progress tracking
    progress_lock = asyncio.Lock()
    
    async def run_single_user():
        nonlocal completed, success_count, failure_count
        
        async with sem:  # This limits concurrency
            async with AuthClient(base_url) as client:
                try:
                    # Generate random user data
                    email = fake.email()
                    password = fake.password(length=12, special_chars=True, digits=True, 
                                          upper_case=True, lower_case=True)
                    
                    # Complete user flow
                    await client.register(email, password)
                    await client.login(email, password)
                    await client.get_current_user()
                    client.logout()
                    
                    async with progress_lock:
                        completed += 1
                        success_count += 1
                        # Print progress
                        print(f"Progress: {completed}/{num_users} users completed", end="\r")
                        
                except Exception as e:
                    async with progress_lock:
                        completed += 1
                        failure_count += 1
                        print(f"Error: {e}")
                        print(f"Progress: {completed}/{num_users} users completed", end="\r")
    
    # Create all tasks
    tasks = [run_single_user() for _ in range(num_users)]
    
    # Display start message
    print(f"Starting load test with {num_users} users (max {concurrency} concurrent)...")
    
    # Run all tasks
    await asyncio.gather(*tasks)
    
    # Calculate stats
    end_time = time.time()
    duration = end_time - start_time
    
    # Display results
    print("\n\n--- Load Test Results ---")
    print(f"Total users: {num_users}")
    print(f"Concurrency level: {concurrency}")
    print(f"Successful flows: {success_count} ({success_count/num_users*100:.1f}%)")
    print(f"Failed flows: {failure_count} ({failure_count/num_users*100:.1f}%)")
    print(f"Total duration: {duration:.2f} seconds")
    
    if success_count > 0:
        print(f"Average time per successful user: {duration/success_count:.2f} seconds")
        print(f"Requests per second: {success_count/duration:.2f}")


# Example usage
async def remote():
    # Initialize the client
    base_url = "http://localhost:7860/api"
    
    # Run a simple example with a single user
    fake = Faker()
    async with AuthClient(base_url) as client:
        # Generate random user data
        first_name = fake.first_name()
        last_name = fake.last_name()
        email = fake.email()
        password = fake.password(length=12, special_chars=True, digits=True, upper_case=True, lower_case=True)
        
        try:
            # Register a new user
            print(f"Registering a new user: {first_name} {last_name}...")
            user = await client.register(email, password)
            print(f"Registered user: {user}")
            
            # Login
            print("\nLogging in...")
            token_data = await client.login(email, password)
            print(f"Login successful, token: {token_data['access_token'][:10]}...")
            
            # Get current user
            print("\nGetting current user info...")
            user_info = await client.get_current_user()
            print(f"Current user: {user_info}")
            
            # Logout
            print("\nLogging out...")
            client.logout()
            print("Logged out successfully")
            
        except Exception as e:
            print(f"Error: {e}")
    
    # Run a load test
    print("\nRunning load test...")
    await load_test(100, 10, base_url)


if __name__ == "__main__":
    asyncio.run(remote())