|
457 | 457 | end.to raise_error(OAuth2::Error) |
458 | 458 | end |
459 | 459 | end |
| 460 | + |
| 461 | + describe 'Yammer profile endpoint support' do |
| 462 | + describe '#profile_endpoint' do |
| 463 | + context 'when no profile endpoint is determined' do |
| 464 | + it 'defaults to Microsoft Graph profile URL' do |
| 465 | + expect(subject.profile_endpoint).to eq('https://graph.microsoft.com/v1.0/me') |
| 466 | + end |
| 467 | + end |
| 468 | + |
| 469 | + context 'when profile endpoint is already set' do |
| 470 | + before { subject.instance_variable_set(:@profile_endpoint, 'https://custom.endpoint.com') } |
| 471 | + |
| 472 | + it 'returns the previously set endpoint' do |
| 473 | + expect(subject.profile_endpoint).to eq('https://custom.endpoint.com') |
| 474 | + end |
| 475 | + end |
| 476 | + end |
| 477 | + |
| 478 | + describe '#determine_profile_endpoint' do |
| 479 | + let(:request) { double('Request', env: request_env) } |
| 480 | + |
| 481 | + context 'when scope includes Yammer access_as_user scope' do |
| 482 | + let(:request_env) { { 'omniauth.params' => { 'scope' => 'https://api.yammer.com/access_as_user' } } } |
| 483 | + |
| 484 | + it 'returns Yammer profile URL' do |
| 485 | + expect(subject.determine_profile_endpoint(request)).to eq('https://www.yammer.com/api/v1/users/current.json') |
| 486 | + end |
| 487 | + end |
| 488 | + |
| 489 | + context 'when scope includes Yammer user_impersonation scope' do |
| 490 | + let(:request_env) { { 'omniauth.params' => { 'scope' => 'openid profile https://api.yammer.com/user_impersonation' } } } |
| 491 | + |
| 492 | + it 'returns Yammer profile URL' do |
| 493 | + expect(subject.determine_profile_endpoint(request)).to eq('https://www.yammer.com/api/v1/users/current.json') |
| 494 | + end |
| 495 | + end |
| 496 | + |
| 497 | + context 'when scope includes Yammer scope among other scopes' do |
| 498 | + let(:request_env) { { 'omniauth.params' => { 'scope' => 'offline_access openid email profile https://api.yammer.com/access_as_user User.Read' } } } |
| 499 | + |
| 500 | + it 'returns Yammer profile URL' do |
| 501 | + expect(subject.determine_profile_endpoint(request)).to eq('https://www.yammer.com/api/v1/users/current.json') |
| 502 | + end |
| 503 | + end |
| 504 | + |
| 505 | + context 'when scope includes multiple Yammer scopes' do |
| 506 | + let(:request_env) { { 'omniauth.params' => { 'scope' => 'openid profile https://api.yammer.com/access_as_user https://api.yammer.com/user_impersonation' } } } |
| 507 | + |
| 508 | + it 'returns Yammer profile URL' do |
| 509 | + expect(subject.determine_profile_endpoint(request)).to eq('https://www.yammer.com/api/v1/users/current.json') |
| 510 | + end |
| 511 | + end |
| 512 | + |
| 513 | + context 'when scope does not include any Yammer scopes' do |
| 514 | + let(:request_env) { { 'omniauth.params' => { 'scope' => 'openid profile User.Read' } } } |
| 515 | + |
| 516 | + it 'returns Microsoft Graph profile URL' do |
| 517 | + expect(subject.determine_profile_endpoint(request)).to eq('https://graph.microsoft.com/v1.0/me') |
| 518 | + end |
| 519 | + end |
| 520 | + |
| 521 | + context 'when scope is nil' do |
| 522 | + let(:request_env) { { 'omniauth.params' => { 'scope' => nil } } } |
| 523 | + |
| 524 | + it 'returns Microsoft Graph profile URL' do |
| 525 | + expect(subject.determine_profile_endpoint(request)).to eq('https://graph.microsoft.com/v1.0/me') |
| 526 | + end |
| 527 | + end |
| 528 | + |
| 529 | + context 'when omniauth.params is nil' do |
| 530 | + let(:request_env) { { 'omniauth.params' => nil } } |
| 531 | + |
| 532 | + it 'returns Microsoft Graph profile URL' do |
| 533 | + expect(subject.determine_profile_endpoint(request)).to eq('https://graph.microsoft.com/v1.0/me') |
| 534 | + end |
| 535 | + end |
| 536 | + end |
| 537 | + end |
460 | 538 | end |
0 commit comments