-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathoauth_token_complete_test.py
More file actions
213 lines (179 loc) · 8.34 KB
/
Copy pathoauth_token_complete_test.py
File metadata and controls
213 lines (179 loc) · 8.34 KB
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
#!/usr/bin/env python3
"""
Complete OAuth Token Testing Suite
This file contains individual tests for all 4 OAuth token functions implemented in src/tfe/resources/oauth_token.py:
FUNCTIONS AVAILABLE FOR TESTING:
1. list() - List OAuth tokens for an organization
2. read() - Read an OAuth token by its ID
3. update() - Update an existing OAuth token
4. delete() - Delete an OAuth token by its ID
USAGE:
- Uncomment specific test sections to test individual functions
- Modify test data (token IDs, SSH keys, etc.) as needed for your environment
- Ensure you have proper TFE credentials and organization access
- Note: OAuth tokens are automatically created when OAuth clients are created
PREREQUISITES:
- You need existing OAuth clients/tokens to test with
- Set TFE_TOKEN and TFE_ADDRESS environment variables
- Organization 'aayush-test' should exist with OAuth clients
"""
import os
import sys
# Add the src directory to the path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "src"))
from tfe import TFEClient, TFEConfig
from tfe.errors import NotFound
from tfe.models.oauth_token import OAuthTokenListOptions, OAuthTokenUpdateOptions
def main():
"""Test all OAuth token functions individually."""
print("=" * 80)
print("OAUTH TOKEN COMPLETE TESTING SUITE")
print("=" * 80)
print("Testing ALL 4 functions in src/tfe/resources/oauth_token.py")
print("Comprehensive test coverage for all OAuth token operations")
print("=" * 80)
# Initialize the TFE client
client = TFEClient(TFEConfig.from_env())
organization_name = "aayush-test" # Using specified organization
# Variables to store found resources for dependent tests
test_token_id = None
# =====================================================
# TEST 1: LIST OAUTH TOKENS
# =====================================================
print("\n1. Testing list() function:")
try:
# Test basic list without options
token_list = client.oauth_tokens.list(organization_name)
print(f" ✓ Found {len(token_list.items)} OAuth tokens")
# Show token details
for i, token in enumerate(token_list.items[:3], 1): # Show first 3
print(f" {i}. Token ID: {token.id}")
print(f" UID: {token.uid}")
print(f" Service Provider User: {token.service_provider_user}")
print(f" Has SSH Key: {token.has_ssh_key}")
print(f" Created: {token.created_at}")
if token.oauth_client:
print(f" OAuth Client: {token.oauth_client.id}")
# Store first token for subsequent tests
if token_list.items:
test_token_id = token_list.items[0].id
print(f"\n Using token {test_token_id} for subsequent tests")
# Test list with options
print("\n Testing list() with pagination options:")
options = OAuthTokenListOptions(page_size=10, page_number=1)
token_list_with_options = client.oauth_tokens.list(organization_name, options)
print(f" ✓ Found {len(token_list_with_options.items)} tokens with options")
if token_list_with_options.current_page:
print(f" Current page: {token_list_with_options.current_page}")
if token_list_with_options.total_count:
print(f" Total count: {token_list_with_options.total_count}")
except NotFound:
print(
" ✓ No OAuth tokens found (organization may not exist or no tokens available)"
)
except Exception as e:
print(f" ✗ Error: {e}")
# =====================================================
# TEST 2: READ OAUTH TOKEN
# =====================================================
if test_token_id:
print("\n2. Testing read() function:")
try:
token = client.oauth_tokens.read(test_token_id)
print(f" ✓ Read OAuth token: {token.id}")
print(f" UID: {token.uid}")
print(f" Service Provider User: {token.service_provider_user}")
print(f" Has SSH Key: {token.has_ssh_key}")
print(f" Created: {token.created_at}")
if token.oauth_client:
print(f" OAuth Client: {token.oauth_client.id}")
except Exception as e:
print(f" ✗ Error: {e}")
else:
print("\n2. Testing read() function:")
print(" ⚠ Skipped - No OAuth token available to read")
# =====================================================
# TEST 3: UPDATE OAUTH TOKEN
# =====================================================
if test_token_id:
print("\n3. Testing update() function:")
try:
# Test updating with SSH key
print(" Testing update with SSH key...")
ssh_key = """-----BEGIN RSA PRIVATE KEY-----
-----END RSA PRIVATE KEY-----"""
options = OAuthTokenUpdateOptions(private_ssh_key=ssh_key)
updated_token = client.oauth_tokens.update(test_token_id, options)
print(f" ✓ Updated OAuth token: {updated_token.id}")
print(f" Has SSH Key after update: {updated_token.has_ssh_key}")
# Test updating without SSH key (no changes)
print("\n Testing update without changes...")
options_empty = OAuthTokenUpdateOptions()
updated_token_2 = client.oauth_tokens.update(test_token_id, options_empty)
print(f" ✓ Updated OAuth token (no changes): {updated_token_2.id}")
except Exception as e:
print(f" ✗ Error: {e}")
print(
" Note: This may fail if the SSH key format is invalid or constraints apply"
)
else:
print("\n3. Testing update() function:")
print(" ⚠ Skipped - No OAuth token available to update")
# =====================================================
# TEST 4: DELETE OAUTH TOKEN
# =====================================================
print("\n4. Testing delete() function:")
# Using specific OAuth token ID for deletion
delete_token_id = "ot-WQf5ARHA1Qxzo9d4"
try:
print(f" Attempting to delete OAuth token: {delete_token_id}")
client.oauth_tokens.delete(delete_token_id)
print(f" ✓ Successfully deleted OAuth token: {delete_token_id}")
# Verify deletion by trying to read the token
try:
client.oauth_tokens.read(delete_token_id)
print(" ✗ Token still exists after deletion!")
except NotFound:
print(" ✓ Confirmed token was deleted - no longer accessible")
except Exception as e:
print(f" ? Verification failed: {e}")
except Exception as e:
print(f" ✗ Error deleting token: {e}")
# Uncomment the following section ONLY if you have a disposable OAuth token
# WARNING: This will permanently delete the OAuth token!
"""
if test_token_id:
try:
print(f" Attempting to delete OAuth token: {test_token_id}")
client.oauth_tokens.delete(test_token_id)
print(f" ✓ Successfully deleted OAuth token: {test_token_id}")
# Verify deletion by trying to read the token
try:
client.oauth_tokens.read(test_token_id)
print(f" ✗ Token still exists after deletion!")
except NotFound:
print(f" ✓ Confirmed token was deleted - no longer accessible")
except Exception as e:
print(f" ? Verification failed: {e}")
except Exception as e:
print(f" ✗ Error deleting token: {e}")
else:
print(" ⚠ Skipped - No OAuth token available to delete")
"""
# =====================================================
# SUMMARY
# =====================================================
print("\n" + "=" * 80)
print("OAUTH TOKEN TESTING COMPLETE")
print("=" * 80)
print("Functions tested:")
print("✓ 1. list() - List OAuth tokens for organization")
print("✓ 2. read() - Read OAuth token by ID")
print("✓ 3. update() - Update existing OAuth token")
print("✓ 4. delete() - Delete OAuth token (testing with ot-WQf5ARHA1Qxzo9d4)")
print("")
print("All OAuth token functions have been tested!")
print("Check the output above for any errors or warnings.")
print("=" * 80)
if __name__ == "__main__":
main()