X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Ffile%2Fsrc%2FTests%2FFilePrivateTest.php;fp=web%2Fcore%2Fmodules%2Ffile%2Fsrc%2FTests%2FFilePrivateTest.php;h=c5771c6aed26ef75059eae5dd28088732562dff8;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/core/modules/file/src/Tests/FilePrivateTest.php b/web/core/modules/file/src/Tests/FilePrivateTest.php new file mode 100644 index 000000000..c5771c6ae --- /dev/null +++ b/web/core/modules/file/src/Tests/FilePrivateTest.php @@ -0,0 +1,228 @@ +set('node_access_test.private', TRUE); + } + + /** + * Tests file access for file uploaded to a private node. + */ + public function testPrivateFile() { + $node_storage = $this->container->get('entity.manager')->getStorage('node'); + $type_name = 'article'; + $field_name = strtolower($this->randomMachineName()); + $this->createFileField($field_name, 'node', $type_name, ['uri_scheme' => 'private']); + + $test_file = $this->getTestFile('text'); + $nid = $this->uploadNodeFile($test_file, $field_name, $type_name, TRUE, ['private' => TRUE]); + \Drupal::entityManager()->getStorage('node')->resetCache([$nid]); + /* @var \Drupal\node\NodeInterface $node */ + $node = $node_storage->load($nid); + $node_file = File::load($node->{$field_name}->target_id); + // Ensure the file can be viewed. + $this->drupalGet('node/' . $node->id()); + $this->assertRaw($node_file->getFilename(), 'File reference is displayed after attaching it'); + // Ensure the file can be downloaded. + $this->drupalGet(file_create_url($node_file->getFileUri())); + $this->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the shipped file.'); + $this->drupalLogOut(); + $this->drupalGet(file_create_url($node_file->getFileUri())); + $this->assertResponse(403, 'Confirmed that access is denied for the file without the needed permission.'); + + // Create a field with no view access. See + // field_test_entity_field_access(). + $no_access_field_name = 'field_no_view_access'; + $this->createFileField($no_access_field_name, 'node', $type_name, ['uri_scheme' => 'private']); + // Test with the field that should deny access through field access. + $this->drupalLogin($this->adminUser); + $nid = $this->uploadNodeFile($test_file, $no_access_field_name, $type_name, TRUE, ['private' => TRUE]); + \Drupal::entityManager()->getStorage('node')->resetCache([$nid]); + $node = $node_storage->load($nid); + $node_file = File::load($node->{$no_access_field_name}->target_id); + + // Ensure the file cannot be downloaded. + $file_url = file_create_url($node_file->getFileUri()); + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that access is denied for the file without view field access permission.'); + + // Attempt to reuse the file when editing a node. + $edit = []; + $edit['title[0][value]'] = $this->randomMachineName(); + $this->drupalPostForm('node/add/' . $type_name, $edit, t('Save and publish')); + $new_node = $this->drupalGetNodeByTitle($edit['title[0][value]']); + $edit[$field_name . '[0][fids]'] = $node_file->id(); + $this->drupalPostForm('node/' . $new_node->id() . '/edit', $edit, t('Save and keep published')); + // Make sure the form submit failed - we stayed on the edit form. + $this->assertUrl('node/' . $new_node->id() . '/edit'); + // Check that we got the expected constraint form error. + $constraint = new ReferenceAccessConstraint(); + $this->assertRaw(SafeMarkup::format($constraint->message, ['%type' => 'file', '%id' => $node_file->id()])); + // Attempt to reuse the existing file when creating a new node, and confirm + // that access is still denied. + $edit = []; + $edit['title[0][value]'] = $this->randomMachineName(); + $edit[$field_name . '[0][fids]'] = $node_file->id(); + $this->drupalPostForm('node/add/' . $type_name, $edit, t('Save and publish')); + $new_node = $this->drupalGetNodeByTitle($edit['title[0][value]']); + $this->assertTrue(empty($new_node), 'Node was not created.'); + $this->assertUrl('node/add/' . $type_name); + $this->assertRaw(SafeMarkup::format($constraint->message, ['%type' => 'file', '%id' => $node_file->id()])); + + // Now make file_test_file_download() return everything. + \Drupal::state()->set('file_test.allow_all', TRUE); + // Delete the node. + $node->delete(); + // Ensure the file can still be downloaded by the owner. + $this->drupalGet($file_url); + $this->assertResponse(200, 'Confirmed that the owner still has access to the temporary file.'); + + // Ensure the file cannot be downloaded by an anonymous user. + $this->drupalLogout(); + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that access is denied for an anonymous user to the temporary file.'); + + // Ensure the file cannot be downloaded by another user. + $account = $this->drupalCreateUser(); + $this->drupalLogin($account); + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that access is denied for another user to the temporary file.'); + + // As an anonymous user, create a temporary file with no references and + // confirm that only the session that uploaded it may view it. + $this->drupalLogout(); + user_role_change_permissions( + RoleInterface::ANONYMOUS_ID, + [ + "create $type_name content" => TRUE, + 'access content' => TRUE, + ] + ); + $test_file = $this->getTestFile('text'); + $this->drupalGet('node/add/' . $type_name); + $edit = ['files[' . $field_name . '_0]' => drupal_realpath($test_file->getFileUri())]; + $this->drupalPostForm(NULL, $edit, t('Upload')); + /** @var \Drupal\file\FileStorageInterface $file_storage */ + $file_storage = $this->container->get('entity.manager')->getStorage('file'); + $files = $file_storage->loadByProperties(['uid' => 0]); + $this->assertEqual(1, count($files), 'Loaded one anonymous file.'); + $file = end($files); + $this->assertTrue($file->isTemporary(), 'File is temporary.'); + $usage = $this->container->get('file.usage')->listUsage($file); + $this->assertFalse($usage, 'No file usage found.'); + $file_url = file_create_url($file->getFileUri()); + $this->drupalGet($file_url); + $this->assertResponse(200, 'Confirmed that the anonymous uploader has access to the temporary file.'); + // Close the prior connection and remove the session cookie. + $this->curlClose(); + $this->curlCookies = []; + $this->cookies = []; + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that another anonymous user cannot access the temporary file.'); + + // As an anonymous user, create a permanent file, then remove all + // references to the file (so that it becomes temporary again) and confirm + // that only the session that uploaded it may view it. + $test_file = $this->getTestFile('text'); + $this->drupalGet('node/add/' . $type_name); + $edit = []; + $edit['title[0][value]'] = $this->randomMachineName(); + $edit['files[' . $field_name . '_0]'] = drupal_realpath($test_file->getFileUri()); + $this->drupalPostForm(NULL, $edit, t('Save')); + $new_node = $this->drupalGetNodeByTitle($edit['title[0][value]']); + $file_id = $new_node->{$field_name}->target_id; + $file = File::load($file_id); + $this->assertTrue($file->isPermanent(), 'File is permanent.'); + // Remove the reference to this file. + $new_node->{$field_name} = []; + $new_node->save(); + $file = File::load($file_id); + $this->assertTrue($file->isTemporary(), 'File is temporary.'); + $usage = $this->container->get('file.usage')->listUsage($file); + $this->assertFalse($usage, 'No file usage found.'); + $file_url = file_create_url($file->getFileUri()); + $this->drupalGet($file_url); + $this->assertResponse(200, 'Confirmed that the anonymous uploader has access to the file whose references were removed.'); + // Close the prior connection and remove the session cookie. + $this->curlClose(); + $this->curlCookies = []; + $this->cookies = []; + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that another anonymous user cannot access the file whose references were removed.'); + + // As an anonymous user, create a permanent file that is referenced by a + // published node and confirm that all anonymous users may view it. + $test_file = $this->getTestFile('text'); + $this->drupalGet('node/add/' . $type_name); + $edit = []; + $edit['title[0][value]'] = $this->randomMachineName(); + $edit['files[' . $field_name . '_0]'] = drupal_realpath($test_file->getFileUri()); + $this->drupalPostForm(NULL, $edit, t('Save')); + $new_node = $this->drupalGetNodeByTitle($edit['title[0][value]']); + $file = File::load($new_node->{$field_name}->target_id); + $this->assertTrue($file->isPermanent(), 'File is permanent.'); + $usage = $this->container->get('file.usage')->listUsage($file); + $this->assertTrue($usage, 'File usage found.'); + $file_url = file_create_url($file->getFileUri()); + $this->drupalGet($file_url); + $this->assertResponse(200, 'Confirmed that the anonymous uploader has access to the permanent file that is referenced by a published node.'); + // Close the prior connection and remove the session cookie. + $this->curlClose(); + $this->curlCookies = []; + $this->cookies = []; + $this->drupalGet($file_url); + $this->assertResponse(200, 'Confirmed that another anonymous user also has access to the permanent file that is referenced by a published node.'); + + // As an anonymous user, create a permanent file that is referenced by an + // unpublished node and confirm that no anonymous users may view it (even + // the session that uploaded the file) because they cannot view the + // unpublished node. + $test_file = $this->getTestFile('text'); + $this->drupalGet('node/add/' . $type_name); + $edit = []; + $edit['title[0][value]'] = $this->randomMachineName(); + $edit['files[' . $field_name . '_0]'] = drupal_realpath($test_file->getFileUri()); + $this->drupalPostForm(NULL, $edit, t('Save')); + $new_node = $this->drupalGetNodeByTitle($edit['title[0][value]']); + $new_node->setPublished(FALSE); + $new_node->save(); + $file = File::load($new_node->{$field_name}->target_id); + $this->assertTrue($file->isPermanent(), 'File is permanent.'); + $usage = $this->container->get('file.usage')->listUsage($file); + $this->assertTrue($usage, 'File usage found.'); + $file_url = file_create_url($file->getFileUri()); + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that the anonymous uploader cannot access the permanent file when it is referenced by an unpublished node.'); + // Close the prior connection and remove the session cookie. + $this->curlClose(); + $this->curlCookies = []; + $this->cookies = []; + $this->drupalGet($file_url); + $this->assertResponse(403, 'Confirmed that another anonymous user cannot access the permanent file when it is referenced by an unpublished node.'); + } + +}