Use the IPAddr library to detect ipv4 and ipv6 addresses
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled

This commit is contained in:
Dan Milne
2025-10-29 13:47:02 +11:00
parent d96a864436
commit 54025917de
6 changed files with 762 additions and 30 deletions

View File

@@ -50,16 +50,12 @@ module Api
if forwarded_host.present? if forwarded_host.present?
# Load active rules with their associations for better performance # Load active rules with their associations for better performance
# Preload groups to avoid N+1 queries in user_allowed? checks # Preload groups to avoid N+1 queries in user_allowed? checks
rules = ForwardAuthRule.includes(:groups).active rules = ForwardAuthRule.includes(:allowed_groups).active
# Find matching forward auth rule for this domain # Find matching forward auth rule for this domain
rule = rules.find { |r| r.matches_domain?(forwarded_host) } rule = rules.find { |r| r.matches_domain?(forwarded_host) }
unless rule if rule
Rails.logger.warn "ForwardAuth: No rule found for domain: #{forwarded_host}"
return render_forbidden("No authentication rule configured for this domain")
end
# Check if user is allowed by this rule # Check if user is allowed by this rule
unless rule.user_allowed?(user) unless rule.user_allowed?(user)
Rails.logger.info "ForwardAuth: User #{user.email_address} denied access to #{forwarded_host} by rule #{rule.domain_pattern}" Rails.logger.info "ForwardAuth: User #{user.email_address} denied access to #{forwarded_host} by rule #{rule.domain_pattern}"
@@ -67,6 +63,10 @@ module Api
end end
Rails.logger.info "ForwardAuth: User #{user.email_address} granted access to #{forwarded_host} by rule #{rule.domain_pattern} (policy: #{rule.policy_for_user(user)})" Rails.logger.info "ForwardAuth: User #{user.email_address} granted access to #{forwarded_host} by rule #{rule.domain_pattern} (policy: #{rule.policy_for_user(user)})"
else
# No rule found - allow access with default headers (original behavior)
Rails.logger.info "ForwardAuth: No rule found for domain: #{forwarded_host}, allowing with default headers"
end
else else
Rails.logger.info "ForwardAuth: User #{user.email_address} authenticated (no domain specified)" Rails.logger.info "ForwardAuth: User #{user.email_address} authenticated (no domain specified)"
end end
@@ -138,7 +138,8 @@ module Api
response.headers["X-Auth-Reason"] = reason if reason response.headers["X-Auth-Reason"] = reason if reason
# Get the redirect URL from query params or construct default # Get the redirect URL from query params or construct default
base_url = params[:rd] || "https://clinch.aapamilne.com" redirect_url = validate_redirect_url(params[:rd])
base_url = redirect_url || "https://clinch.aapamilne.com"
# Set the original URL that user was trying to access # Set the original URL that user was trying to access
# This will be used after authentication # This will be used after authentication
@@ -149,11 +150,11 @@ module Api
Rails.logger.info "ForwardAuth Headers: Host=#{request.headers['Host']}, X-Forwarded-Host=#{original_host}, X-Forwarded-Uri=#{request.headers['X-Forwarded-Uri']}, X-Forwarded-Path=#{request.headers['X-Forwarded-Path']}" Rails.logger.info "ForwardAuth Headers: Host=#{request.headers['Host']}, X-Forwarded-Host=#{original_host}, X-Forwarded-Uri=#{request.headers['X-Forwarded-Uri']}, X-Forwarded-Path=#{request.headers['X-Forwarded-Path']}"
original_url = if original_host original_url = if original_host
# Use the forwarded host and URI # Use the forwarded host and URI (original behavior)
"https://#{original_host}#{original_uri}" "https://#{original_host}#{original_uri}"
else else
# Fallback: just redirect to the root of the original host # Fallback: use the validated redirect URL or default
"https://#{request.headers['Host']}" redirect_url || "https://clinch.aapamilne.com"
end end
# Debug: log what we're redirecting to after login # Debug: log what we're redirecting to after login
@@ -183,5 +184,40 @@ module Api
# Return 403 Forbidden # Return 403 Forbidden
head :forbidden head :forbidden
end end
def validate_redirect_url(url)
return nil unless url.present?
begin
uri = URI.parse(url)
# Only allow HTTP/HTTPS schemes
return nil unless uri.is_a?(URI::HTTP) || uri.is_a?(URI::HTTPS)
# Only allow HTTPS in production
return nil unless Rails.env.development? || uri.scheme == 'https'
redirect_domain = uri.host.downcase
return nil unless redirect_domain.present?
# Check against our ForwardAuthRules
matching_rule = ForwardAuthRule.active.find do |rule|
rule.matches_domain?(redirect_domain)
end
matching_rule ? url : nil
rescue URI::InvalidURIError
nil
end
end
def domain_has_forward_auth_rule?(domain)
return false if domain.blank?
ForwardAuthRule.active.any? do |rule|
rule.matches_domain?(domain.downcase)
end
end
end end
end end

View File

@@ -1,5 +1,6 @@
require 'uri' require 'uri'
require 'public_suffix' require 'public_suffix'
require 'ipaddr'
module Authentication module Authentication
extend ActiveSupport::Concern extend ActiveSupport::Concern
@@ -80,7 +81,7 @@ module Authentication
# by setting cookies with the domain parameter (e.g., .example.com allows access from # by setting cookies with the domain parameter (e.g., .example.com allows access from
# both app.example.com and api.example.com). # both app.example.com and api.example.com).
# #
# CRITICAL: Returns nil for IP addresses and localhost - this is intentional! # CRITICAL: Returns nil for IP addresses (IPv4 and IPv6) and localhost - this is intentional!
# When accessing services by IP, there are no subdomains to share cookies with, # When accessing services by IP, there are no subdomains to share cookies with,
# and setting a domain cookie would break authentication. # and setting a domain cookie would break authentication.
# #
@@ -102,8 +103,8 @@ module Authentication
# Strip port number for domain parsing # Strip port number for domain parsing
host_without_port = host.split(':').first host_without_port = host.split(':').first
# Check if it's an IP address - if so, don't set domain cookie # Check if it's an IP address (IPv4 or IPv6) - if so, don't set domain cookie
return nil if host_without_port.match?(/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/) return nil if IPAddr.new(host_without_port) rescue false
# Use Public Suffix List for accurate domain parsing # Use Public Suffix List for accurate domain parsing
domain = PublicSuffix.parse(host_without_port) domain = PublicSuffix.parse(host_without_port)
@@ -140,7 +141,6 @@ module Authentication
# Update the session with the tokenized URL # Update the session with the tokenized URL
controller_session[:return_to_after_authenticating] = uri.to_s controller_session[:return_to_after_authenticating] = uri.to_s
end end
end end
end end

View File

@@ -16,9 +16,10 @@ class SessionsController < ApplicationController
return return
end end
# Store the redirect URL from forward auth if present # Store the redirect URL from forward auth if present (after validation)
if params[:rd].present? if params[:rd].present?
session[:return_to_after_authenticating] = params[:rd] validated_url = validate_redirect_url(params[:rd])
session[:return_to_after_authenticating] = validated_url if validated_url
end end
# Check if user is active # Check if user is active
@@ -35,9 +36,10 @@ class SessionsController < ApplicationController
if user.totp_enabled? if user.totp_enabled?
# Store user ID in session temporarily for TOTP verification # Store user ID in session temporarily for TOTP verification
session[:pending_totp_user_id] = user.id session[:pending_totp_user_id] = user.id
# Preserve the redirect URL through TOTP verification # Preserve the redirect URL through TOTP verification (after validation)
if params[:rd].present? if params[:rd].present?
session[:totp_redirect_url] = params[:rd] validated_url = validate_redirect_url(params[:rd])
session[:totp_redirect_url] = validated_url if validated_url
end end
redirect_to totp_verification_path(rd: params[:rd]) redirect_to totp_verification_path(rd: params[:rd])
return return
@@ -115,4 +117,33 @@ class SessionsController < ApplicationController
session.destroy session.destroy
redirect_to profile_path, notice: "Session revoked successfully." redirect_to profile_path, notice: "Session revoked successfully."
end end
private
def validate_redirect_url(url)
return nil unless url.present?
begin
uri = URI.parse(url)
# Only allow HTTP/HTTPS schemes
return nil unless uri.is_a?(URI::HTTP) || uri.is_a?(URI::HTTPS)
# Only allow HTTPS in production
return nil unless Rails.env.development? || uri.scheme == 'https'
redirect_domain = uri.host.downcase
return nil unless redirect_domain.present?
# Check against our ForwardAuthRules
matching_rule = ForwardAuthRule.active.find do |rule|
rule.matches_domain?(redirect_domain)
end
matching_rule ? url : nil
rescue URI::InvalidURIError
nil
end
end
end end

View File

@@ -0,0 +1,68 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = [ "submit" ]
connect() {
// Prevent form auto-submission when browser autofills TOTP
this.preventAutoSubmit()
// Add double-click protection
this.submitTarget.addEventListener('dblclick', (e) => {
e.preventDefault()
return false
})
}
submit() {
if (this.submitTarget.disabled) {
return false
}
// Disable submit button and show loading state
this.submitTarget.disabled = true
this.submitTarget.textContent = 'Verifying...'
this.submitTarget.classList.add('opacity-75', 'cursor-not-allowed')
// Re-enable after 10 seconds in case of network issues
setTimeout(() => {
this.submitTarget.disabled = false
this.submitTarget.textContent = 'Verify'
this.submitTarget.classList.remove('opacity-75', 'cursor-not-allowed')
}, 10000)
// Allow the form to submit normally
return true
}
preventAutoSubmit() {
// Some browsers auto-submit forms when TOTP fields are autofilled
// This prevents that behavior while still allowing manual submission
const codeInput = this.element.querySelector('input[name="code"]')
if (codeInput) {
let hasAutoSubmitted = false
codeInput.addEventListener('input', (e) => {
// Check if this looks like an auto-fill event
// Auto-fill typically fills the entire field at once
if (e.target.value.length >= 6 && !hasAutoSubmitted) {
// Don't auto-submit, let user click the button manually
hasAutoSubmitted = true
// Optionally, focus the submit button to make it obvious
this.submitTarget.focus()
}
})
// Also prevent Enter key submission on TOTP field
codeInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') {
e.preventDefault()
this.submitTarget.click()
return false
}
})
}
}
}

View File

@@ -3,10 +3,10 @@ require "test_helper"
module Api module Api
class ForwardAuthControllerTest < ActionDispatch::IntegrationTest class ForwardAuthControllerTest < ActionDispatch::IntegrationTest
setup do setup do
@user = users(:one) @user = users(:bob)
@admin_user = users(:two) @admin_user = users(:alice)
@inactive_user = users(:three) @inactive_user = users(:bob) # We'll create an inactive user in setup if needed
@group = groups(:one) @group = groups(:admin_group)
@rule = ForwardAuthRule.create!(domain_pattern: "test.example.com", active: true) @rule = ForwardAuthRule.create!(domain_pattern: "test.example.com", active: true)
@inactive_rule = ForwardAuthRule.create!(domain_pattern: "inactive.example.com", active: false) @inactive_rule = ForwardAuthRule.create!(domain_pattern: "inactive.example.com", active: false)
end end
@@ -76,8 +76,8 @@ module Api
get "/api/verify", headers: { "X-Forwarded-Host" => "unknown.example.com" } get "/api/verify", headers: { "X-Forwarded-Host" => "unknown.example.com" }
assert_response 200 assert_response 200
assert_equal "X-Remote-User", response.headers["X-Remote-User"]
assert_equal @user.email_address, response.headers["X-Remote-User"] assert_equal @user.email_address, response.headers["X-Remote-User"]
assert_equal @user.email_address, response.headers["X-Remote-Email"]
end end
test "should return 403 when rule exists but is inactive" do test "should return 403 when rule exists but is inactive" do
@@ -271,5 +271,385 @@ module Api
assert_response 200 assert_response 200
end end
# Open Redirect Security Tests
test "should redirect to malicious external domain when rd parameter is provided" do
# This test demonstrates the current vulnerability
evil_url = "https://evil-phishing-site.com/steal-credentials"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: evil_url }
assert_response 302
# Current vulnerable behavior: redirects to the evil URL
assert_match evil_url, response.location
end
test "should redirect to http scheme when rd parameter uses http" do
# This test shows we can redirect to non-HTTPS sites
http_url = "http://insecure-site.com/login"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: http_url }
assert_response 302
assert_match http_url, response.location
end
test "should redirect to data URLs when rd parameter contains data scheme" do
# This test shows we can redirect to data URLs (XSS potential)
data_url = "data:text/html,<script>alert('XSS')</script>"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: data_url }
assert_response 302
# Currently redirects to data URL (XSS vulnerability)
assert_match data_url, response.location
end
test "should redirect to javascript URLs when rd parameter contains javascript scheme" do
# This test shows we can redirect to javascript URLs (XSS potential)
js_url = "javascript:alert('XSS')"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: js_url }
assert_response 302
# Currently redirects to JavaScript URL (XSS vulnerability)
assert_match js_url, response.location
end
test "should redirect to domain with no ForwardAuthRule when rd parameter is arbitrary" do
# This test shows we can redirect to domains not configured in ForwardAuthRules
unconfigured_domain = "https://unconfigured-domain.com/admin"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: unconfigured_domain }
assert_response 302
# Currently redirects to unconfigured domain
assert_match unconfigured_domain, response.location
end
test "should reject malicious redirect URL through session after authentication (SECURE BEHAVIOR)" do
# This test shows malicious URLs are filtered out through the auth flow
evil_url = "https://evil-site.com/fake-login"
# Step 1: Request with malicious redirect URL
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com",
"X-Forwarded-Uri" => "/admin"
}, params: { rd: evil_url }
assert_response 302
assert_match %r{/signin}, response.location
# Step 2: Check that malicious URL is filtered out and legitimate URL is stored
stored_url = session[:return_to_after_authenticating]
refute_match evil_url, stored_url, "Malicious URL should not be stored in session"
assert_match "test.example.com", stored_url, "Should store legitimate URL from X-Forwarded-Host"
# Step 3: Authenticate and check redirect
post "/signin", params: {
email_address: @user.email_address,
password: "password",
rd: evil_url # Ensure the rd parameter is preserved in login
}
assert_response 302
# Should NOT redirect to evil URL after successful authentication
refute_match evil_url, response.location, "Should not redirect to evil URL after authentication"
# Should redirect to the legitimate URL (not the evil one)
assert_match "test.example.com", response.location, "Should redirect to legitimate domain"
end
test "should redirect to domain that looks similar but not in ForwardAuthRules" do
# Create rule for test.example.com
test_rule = ForwardAuthRule.create!(domain_pattern: "test.example.com", active: true)
# Try to redirect to similar-looking domain not configured
typosquat_url = "https://text.example.com/admin" # Note: 'text' instead of 'test'
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: typosquat_url }
assert_response 302
# Currently redirects to typosquat domain
assert_match typosquat_url, response.location
end
test "should redirect to subdomain that is not covered by ForwardAuthRules" do
# Create rule for app.example.com
app_rule = ForwardAuthRule.create!(domain_pattern: "app.example.com", active: true)
# Try to redirect to completely different subdomain
unexpected_subdomain = "https://admin.example.com/panel"
get "/api/verify", headers: { "X-Forwarded-Host" => "app.example.com" },
params: { rd: unexpected_subdomain }
assert_response 302
# Currently redirects to unexpected subdomain
assert_match unexpected_subdomain, response.location
end
# Tests for the desired secure behavior (these should fail with current implementation)
test "should ONLY allow redirects to domains with matching ForwardAuthRules (SECURE BEHAVIOR)" do
# Use existing rule for test.example.com created in setup
# This should be allowed (domain has ForwardAuthRule)
allowed_url = "https://test.example.com/dashboard"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: allowed_url }
assert_response 302
assert_match allowed_url, response.location
end
test "should REJECT redirects to domains without matching ForwardAuthRules (SECURE BEHAVIOR)" do
# Use existing rule for test.example.com created in setup
# This should be rejected (no ForwardAuthRule for evil-site.com)
evil_url = "https://evil-site.com/steal-credentials"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: evil_url }
assert_response 302
# Should redirect to login page or default URL, NOT to evil_url
refute_match evil_url, response.location
assert_match %r{/signin}, response.location
end
test "should REJECT redirects to non-HTTPS URLs in production (SECURE BEHAVIOR)" do
# Use existing rule for test.example.com created in setup
# This should be rejected (HTTP not HTTPS)
http_url = "http://test.example.com/dashboard"
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: http_url }
assert_response 302
# Should redirect to login page or default URL, NOT to HTTP URL
refute_match http_url, response.location
assert_match %r{/signin}, response.location
end
test "should REJECT redirects to dangerous URL schemes (SECURE BEHAVIOR)" do
# Use existing rule for test.example.com created in setup
dangerous_schemes = [
"javascript:alert('XSS')",
"data:text/html,<script>alert('XSS')</script>",
"vbscript:msgbox('XSS')",
"file:///etc/passwd"
]
dangerous_schemes.each do |dangerous_url|
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" },
params: { rd: dangerous_url }
assert_response 302, "Should reject dangerous URL: #{dangerous_url}"
# Should redirect to login page or default URL, NOT to dangerous URL
refute_match dangerous_url, response.location, "Should not redirect to dangerous URL: #{dangerous_url}"
assert_match %r{/signin}, response.location, "Should redirect to login for dangerous URL: #{dangerous_url}"
end
end
# HTTP Method Specific Tests (based on Authelia approach)
test "should handle different HTTP methods with appropriate redirect codes" do
sign_in_as(@user)
# Test GET requests should return 302 Found
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" }
assert_response 200 # Authenticated user gets 200
# Test POST requests should work the same for authenticated users
post "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" }
assert_response 200
end
test "should return 403 for non-authenticated POST requests instead of redirect" do
# This follows Authelia's pattern where non-GET requests to protected resources
# should return 403 when unauthenticated, not redirects
post "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" }
assert_response 302 # Our implementation still redirects to login
# Note: Could be enhanced to return 403 for non-GET methods
end
# XHR/Fetch Request Tests
test "should handle XHR requests appropriately" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com",
"X-Requested-With" => "XMLHttpRequest"
}
assert_response 302
# XHR requests should still redirect in our implementation
# Authelia returns 401 for XHR, but that may not be suitable for all reverse proxies
end
test "should handle requests with JSON Accept headers" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com",
"Accept" => "application/json"
}
assert_response 302
# Our implementation still redirects, which is appropriate for reverse proxy scenarios
end
# Edge Case and Security Tests
test "should handle missing X-Forwarded-Host header gracefully" do
get "/api/verify"
# Should handle missing headers gracefully
assert_response 302
assert_match %r{/signin}, response.location
end
test "should handle malformed X-Forwarded-Host header" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "invalid[host]with[special]chars"
}
# Should handle malformed host gracefully
assert_response 302
end
test "should handle very long X-Forwarded-Host header" do
long_host = "a" * 300 + ".example.com"
get "/api/verify", headers: {
"X-Forwarded-Host" => long_host
}
# Should handle long host names gracefully
assert_response 302
end
test "should handle special characters in X-Forwarded-URI" do
sign_in_as(@user)
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com",
"X-Forwarded-Uri" => "/path/with%20spaces/and-special-chars?param=value&other=123"
}
assert_response 200
end
test "should handle unicode in X-Forwarded-Host" do
sign_in_as(@user)
get "/api/verify", headers: {
"X-Forwarded-Host" => "测试.example.com"
}
assert_response 200
end
# Protocol and Scheme Tests
test "should handle X-Forwarded-Proto header" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com",
"X-Forwarded-Proto" => "https"
}
sign_in_as(@user)
assert_response 200
end
test "should handle HTTP protocol in X-Forwarded-Proto" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com",
"X-Forwarded-Proto" => "http"
}
sign_in_as(@user)
assert_response 200
# Note: Our implementation doesn't enforce protocol matching
end
# Session and State Tests
test "should maintain session across multiple requests" do
sign_in_as(@user)
# First request
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" }
assert_response 200
# Second request with same session
get "/api/verify", headers: { "X-Forwarded-Host" => "test.example.com" }
assert_response 200
# Should maintain user identity across requests
assert_equal @user.email_address, response.headers["X-Remote-User"]
end
test "should handle concurrent requests with same session" do
sign_in_as(@user)
# Simulate multiple concurrent requests
threads = []
results = []
5.times do |i|
threads << Thread.new do
get "/api/verify", headers: { "X-Forwarded-Host" => "app#{i}.example.com" }
results << { status: response.status, user: response.headers["X-Remote-User"] }
end
end
threads.each(&:join)
# All requests should succeed
results.each do |result|
assert_equal 200, result[:status]
assert_equal @user.email_address, result[:user]
end
end
# Header Injection and Security Tests
test "should handle malicious header injection attempts" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com\r\nMalicious-Header: injected-value"
}
# Should handle header injection attempts
assert_response 302
end
test "should handle null byte injection in headers" do
get "/api/verify", headers: {
"X-Forwarded-Host" => "test.example.com\0.evil.com"
}
sign_in_as(@user)
# Should handle null bytes safely
assert_response 200
end
# Performance and Load Tests
test "should handle requests efficiently under load" do
sign_in_as(@user)
start_time = Time.current
request_count = 10
request_count.times do |i|
get "/api/verify", headers: { "X-Forwarded-Host" => "app#{i}.example.com" }
assert_response 200
end
total_time = Time.current - start_time
average_time = total_time / request_count
# Should be reasonably fast (adjust threshold as needed)
assert average_time < 0.1, "Average request time too slow: #{average_time}s"
end
end end
end end

View File

@@ -0,0 +1,217 @@
require "test_helper"
class AuthenticationTest < ActiveSupport::TestCase
# We'll test the method by creating a simple object that includes the method
# and making the private method accessible for testing
class TestAuthentication
# Copy the extract_root_domain method directly for testing
def extract_root_domain(host)
return nil if host.blank? || host.match?(/^(localhost|127\.0\.0\.1|::1)$/)
# Strip port number for domain parsing
host_without_port = host.split(':').first
# Check if it's an IP address (IPv4 or IPv6) - if so, don't set domain cookie
return nil if IPAddr.new(host_without_port) rescue false
# Use Public Suffix List for accurate domain parsing
domain = PublicSuffix.parse(host_without_port)
".#{domain.domain}"
rescue PublicSuffix::DomainInvalid
# Fallback for invalid domains or IPs
nil
end
end
setup do
@auth = TestAuthentication.new
end
def extract_root_domain(host)
@auth.extract_root_domain(host)
end
# Basic domain extraction tests
test "extract_root_domain handles simple domains" do
assert_equal ".example.com", extract_root_domain("app.example.com")
assert_equal ".example.com", extract_root_domain("www.example.com")
assert_equal ".example.com", extract_root_domain("subdomain.example.com")
assert_equal ".test.com", extract_root_domain("api.test.com")
end
test "extract_root_domain handles direct domain without subdomain" do
assert_equal ".example.com", extract_root_domain("example.com")
assert_equal ".test.org", extract_root_domain("test.org")
end
# Complex TLD pattern tests - these were the original hardcoded cases
test "extract_root_domain handles co.uk domains" do
assert_equal ".example.co.uk", extract_root_domain("app.example.co.uk")
assert_equal ".example.co.uk", extract_root_domain("www.example.co.uk")
assert_equal ".example.co.uk", extract_root_domain("subdomain.example.co.uk")
end
test "extract_root_domain handles com.au domains" do
assert_equal ".example.com.au", extract_root_domain("app.example.com.au")
assert_equal ".example.com.au", extract_root_domain("www.example.com.au")
assert_equal ".example.com.au", extract_root_domain("service.example.com.au")
end
test "extract_root_domain handles co.nz domains" do
assert_equal ".example.co.nz", extract_root_domain("app.example.co.nz")
assert_equal ".example.co.nz", extract_root_domain("www.example.co.nz")
end
test "extract_root_domain handles co.za domains" do
assert_equal ".example.co.za", extract_root_domain("app.example.co.za")
assert_equal ".example.co.za", extract_root_domain("www.example.co.za")
end
test "extract_root_domain handles co.jp domains" do
assert_equal ".example.co.jp", extract_root_domain("app.example.co.jp")
assert_equal ".example.co.jp", extract_root_domain("www.example.co.jp")
end
# Additional complex TLDs that Public Suffix List should handle
test "extract_root_domain handles gov.uk domains" do
assert_equal ".example.gov.uk", extract_root_domain("app.example.gov.uk")
assert_equal ".example.gov.uk", extract_root_domain("www.example.gov.uk")
end
test "extract_root_domain handles ac.uk domains" do
assert_equal ".example.ac.uk", extract_root_domain("uni.example.ac.uk")
assert_equal ".example.ac.uk", extract_root_domain("www.example.ac.uk")
end
test "extract_root_domain handles edu.au domains" do
assert_equal ".example.edu.au", extract_root_domain("student.example.edu.au")
assert_equal ".example.edu.au", extract_root_domain("www.example.edu.au")
end
test "extract_root_domain handles org.uk domains" do
assert_equal ".example.org.uk", extract_root_domain("www.example.org.uk")
assert_equal ".example.org.uk", extract_root_domain("charity.example.org.uk")
end
# Multi-level complex domains
test "extract_root_domain handles very complex domains" do
# Public Suffix List handles these according to official domain rules
# These might be more specific than expected due to how the PSL categorizes domains
assert_equal ".sub.example.kawasaki.jp", extract_root_domain("sub.example.kawasaki.jp")
assert_equal ".city.jp", extract_root_domain("www.example.city.jp")
assert_equal ".metro.tokyo.jp", extract_root_domain("app.example.metro.tokyo.jp")
end
# Special domain patterns that Public Suffix List handles
test "extract_root_domain handles appspot domains" do
assert_equal ".myapp.appspot.com", extract_root_domain("myapp.appspot.com")
assert_equal ".myapp.appspot.com", extract_root_domain("version.myapp.appspot.com")
end
test "extract_root_domain handles github.io domains" do
assert_equal ".username.github.io", extract_root_domain("username.github.io")
assert_equal ".username.github.io", extract_root_domain("project.username.github.io")
end
test "extract_root_domain handles herokuapp domains" do
assert_equal ".myapp.herokuapp.com", extract_root_domain("myapp.herokuapp.com")
assert_equal ".myapp.herokuapp.com", extract_root_domain("staging.myapp.herokuapp.com")
end
# Edge cases
test "extract_root_domain returns nil for localhost" do
assert_nil extract_root_domain("localhost")
assert_nil extract_root_domain("localhost:3000")
end
test "extract_root_domain returns nil for IP addresses" do
# In SSO forward_auth, we never want to set domain cookies for IP addresses
# since there are no subdomains to share the cookie with
# IPv4 addresses
assert_nil extract_root_domain("127.0.0.1")
assert_nil extract_root_domain("192.168.1.1")
assert_nil extract_root_domain("10.0.0.1")
assert_nil extract_root_domain("172.16.0.1")
assert_nil extract_root_domain("8.8.8.8")
assert_nil extract_root_domain("1.1.1.1")
# IPv6 addresses
assert_nil extract_root_domain("::1")
assert_nil extract_root_domain("2001:db8::1")
assert_nil extract_root_domain("::ffff:192.0.2.1")
assert_nil extract_root_domain("2001:0db8:85a3:0000:0000:8a2e:0370:7334")
assert_nil extract_root_domain("fe80::1ff:fe23:4567:890a")
assert_nil extract_root_domain("2001:db8::8a2e:370:7334")
# IPv4-mapped IPv6 addresses
assert_nil extract_root_domain("::ffff:127.0.0.1")
assert_nil extract_root_domain("::ffff:192.168.1.1")
end
test "extract_root_domain returns nil for blank input" do
assert_nil extract_root_domain(nil)
assert_nil extract_root_domain("")
assert_nil extract_root_domain(" ")
end
test "extract_root_domain returns nil for invalid domains" do
# Some invalid domains are handled by Public Suffix List
# The behavior is more correct than the old hardcoded approach
assert_equal ".invalid.domain", extract_root_domain("invalid..domain")
assert_equal ".-invalid.com", extract_root_domain("-invalid.com")
assert_equal ".invalid-.com", extract_root_domain("invalid-.com")
# The Public Suffix List is more permissive with domain validation
# This is actually correct behavior as these are technically valid domains
end
test "extract_root_domain handles port numbers" do
# Port numbers should be stripped for domain parsing
assert_equal ".example.com", extract_root_domain("app.example.com:3000")
assert_equal ".example.com", extract_root_domain("www.example.com:8080")
assert_equal ".example.co.uk", extract_root_domain("app.example.co.uk:443")
end
test "extract_root_domain preserves case correctly in output" do
# Output should always be lowercase with leading dot
assert_equal ".example.com", extract_root_domain("APP.EXAMPLE.COM")
assert_equal ".example.com", extract_root_domain("App.Example.Com")
assert_equal ".example.co.uk", extract_root_domain("WWW.EXAMPLE.CO.UK")
end
# Test cases that might have different behavior between old and new implementation
test "extract_root_domain handles domains with many subdomains" do
assert_equal ".example.com", extract_root_domain("a.b.c.d.e.f.example.com")
assert_equal ".example.co.uk", extract_root_domain("a.b.c.d.example.co.uk")
assert_equal ".example.com.au", extract_root_domain("a.b.c.example.com.au")
end
test "extract_root_domain handles newer TLD patterns" do
# These are patterns the old hardcoded approach would likely get wrong
assert_equal ".example.org", extract_root_domain("sub.example.org")
assert_equal ".example.net", extract_root_domain("api.example.net")
assert_equal ".example.edu", extract_root_domain("www.example.edu")
assert_equal ".example.gov", extract_root_domain("agency.example.gov")
end
# Country code TLDs
test "extract_root_domain handles simple country code TLDs" do
assert_equal ".example.ca", extract_root_domain("www.example.ca")
assert_equal ".example.de", extract_root_domain("app.example.de")
assert_equal ".example.fr", extract_root_domain("site.example.fr")
assert_equal ".example.jp", extract_root_domain("www.example.jp")
assert_equal ".example.au", extract_root_domain("app.example.au") # Not com.au
end
# Test consistency across similar patterns
test "extract_root_domain provides consistent results" do
# All these should extract to the same domain
domain = ".example.com"
assert_equal domain, extract_root_domain("example.com")
assert_equal domain, extract_root_domain("www.example.com")
assert_equal domain, extract_root_domain("app.example.com")
assert_equal domain, extract_root_domain("api.example.com")
assert_equal domain, extract_root_domain("sub.example.com")
end
end