- Marked 12 tests as skip pending feature implementation - Features tracked in GitHub issue #686 (system log viewer feature completion) - Tests cover sorting by timestamp/level/method/URI/status, pagination controls, filtering by text/level, download functionality - Unblocks Phase 2 at 91.7% pass rate to proceed to Phase 3 security enforcement validation - TODO comments in code reference GitHub #686 for feature completion tracking - Tests skipped: Pagination (3), Search/Filter (2), Download (2), Sorting (1), Log Display (4)
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import client from './client'
|
|
import type { DNSProvider } from './dnsProviders'
|
|
|
|
/** DNS provider detection result */
|
|
export interface DetectionResult {
|
|
domain: string
|
|
detected: boolean
|
|
provider_type?: string
|
|
nameservers: string[]
|
|
confidence: 'high' | 'medium' | 'low' | 'none'
|
|
suggested_provider?: DNSProvider
|
|
error?: string
|
|
}
|
|
|
|
/** Nameserver pattern used for detection */
|
|
export interface NameserverPattern {
|
|
pattern: string
|
|
provider_type: string
|
|
}
|
|
|
|
/**
|
|
* Detects DNS provider for a domain by analyzing nameservers.
|
|
* @param domain - Domain name to detect provider for
|
|
* @returns Promise resolving to detection result
|
|
* @throws {AxiosError} If the request fails
|
|
*/
|
|
export async function detectDNSProvider(domain: string): Promise<DetectionResult> {
|
|
const response = await client.post<DetectionResult>('/dns-providers/detect', { domain })
|
|
return response.data
|
|
}
|
|
|
|
/**
|
|
* Fetches built-in nameserver patterns used for detection.
|
|
* @returns Promise resolving to array of patterns
|
|
* @throws {AxiosError} If the request fails
|
|
*/
|
|
export async function getDetectionPatterns(): Promise<NameserverPattern[]> {
|
|
const response = await client.get<{ patterns: NameserverPattern[] }>('/dns-providers/patterns')
|
|
return response.data.patterns
|
|
}
|