diff --git a/core/modules/book/src/BookBreadcrumbBuilder.php b/core/modules/book/src/BookBreadcrumbBuilder.php
index 4bef0e3..2fc237c 100644
--- a/core/modules/book/src/BookBreadcrumbBuilder.php
+++ b/core/modules/book/src/BookBreadcrumbBuilder.php
@@ -88,7 +88,10 @@ public function build(RouteMatchInterface $route_match) {
       $depth = 1;
       while (!empty($book['p' . ($depth + 1)])) {
         if (!empty($parent_books[$book['p' . $depth]]) && ($parent_book = $parent_books[$book['p' . $depth]])) {
-          if ($parent_book->access('view', $this->account)) {
+          $access = $parent_book->access('view', $this->account, TRUE);
+          $breadcrumb->addCacheableDependency($access);
+          if ($access->isAllowed()) {
+            $breadcrumb->addCacheableDependency($parent_book);
             $links[] = Link::createFromRoute($parent_book->label(), 'entity.node.canonical', array('node' => $parent_book->id()));
           }
         }
diff --git a/core/modules/book/src/Tests/BookBreadcrumbTest.php b/core/modules/book/src/Tests/BookBreadcrumbTest.php
new file mode 100644
index 0000000..2c126aa
--- /dev/null
+++ b/core/modules/book/src/Tests/BookBreadcrumbTest.php
@@ -0,0 +1,207 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\book\Tests\BookBreadcrumbTest.
+ */
+
+namespace Drupal\book\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Create a book, add pages, and test book interface.
+ *
+ * @group book
+ */
+class BookBreadcrumbTest extends WebTestBase {
+
+  /**
+   * Modules to install.
+   *
+   * @var array
+   */
+  public static $modules = array('book', 'block', 'book_breadcrumb_test');
+
+  /**
+   * A book node.
+   *
+   * @var \Drupal\node\NodeInterface
+   */
+  protected $book;
+
+  /**
+   * A user with permission to create and edit books.
+   *
+   * @var \Drupal\user\Entity\User
+   */
+  protected $bookAuthor;
+
+  /**
+   * A user without the 'node test view' permission.
+   *
+   * @var \Drupal\user\UserInterface
+   */
+  protected $webUserWithoutNodeAccess;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->drupalPlaceBlock('system_breadcrumb_block');
+    $this->drupalPlaceBlock('page_title_block');
+
+    // Create users.
+    $this->bookAuthor = $this->drupalCreateUser(array('create new books', 'create book content', 'edit own book content', 'add content to books'));
+    $this->adminUser = $this->drupalCreateUser(array('create new books', 'create book content', 'edit any book content', 'delete any book content', 'add content to books', 'administer blocks', 'administer permissions', 'administer book outlines', 'administer content types', 'administer site configuration'));
+  }
+
+  /**
+   * Creates a new book with a page hierarchy.
+   *
+   * @return \Drupal\node\NodeInterface[]
+   */
+  function createBreadcrumbBook() {
+    // Create new book.
+    $this->drupalLogin($this->bookAuthor);
+
+    $this->book = $this->createBookNode('new');
+    $book = $this->book;
+
+    /*
+     * Add page hierarchy to book.
+     * Book
+     *  |- Node 0
+     *   |- Node 1
+     *   |- Node 2
+     *    |- Node 3
+     *     |- Node 4
+     *      |- Node 5
+     *  |- Node 6
+     */
+    $nodes = array();
+    $nodes[0] = $this->createBookNode($book->id()); // Node 0.
+    $nodes[1] = $this->createBookNode($book->id(), $nodes[0]->id()); // Node 1.
+    $nodes[2] = $this->createBookNode($book->id(), $nodes[0]->id()); // Node 2.
+    $nodes[3] = $this->createBookNode($book->id(), $nodes[2]->id()); // Node 3.
+    $nodes[4] = $this->createBookNode($book->id(), $nodes[3]->id()); // Node 4.
+    $nodes[5] = $this->createBookNode($book->id(), $nodes[4]->id()); // Node 5.
+    $nodes[6] = $this->createBookNode($book->id()); // Node 6.
+
+    $this->drupalLogout();
+
+    return $nodes;
+  }
+
+  /**
+   * Creates a book node.
+   *
+   * @param int|string $book_nid
+   *   A book node ID or set to 'new' to create a new book.
+   * @param int|null $parent
+   *   (optional) Parent book reference ID. Defaults to NULL.
+   *
+   * @return \Drupal\node\NodeInterface
+   *   The created node.
+   */
+  function createBookNode($book_nid, $parent = NULL) {
+    // $number does not use drupal_static as it should not be reset
+    // since it uniquely identifies each call to createBookNode().
+    static $number = 0; // Used to ensure that when sorted nodes stay in same order.
+
+    $edit = array();
+    $edit['title[0][value]'] = str_pad($number, 2, '0', STR_PAD_LEFT) . ' - SimpleTest test node ' . $this->randomMachineName(10);
+    $edit['body[0][value]'] = 'SimpleTest test body ' . $this->randomMachineName(32) . ' ' . $this->randomMachineName(32);
+    $edit['book[bid]'] = $book_nid;
+
+    if ($parent !== NULL) {
+      $this->drupalPostForm('node/add/book', $edit, t('Change book (update list of parents)'));
+
+      $edit['book[pid]'] = $parent;
+      $this->drupalPostForm(NULL, $edit, t('Save'));
+      // Make sure the parent was flagged as having children.
+      $parent_node = \Drupal::entityManager()->getStorage('node')->loadUnchanged($parent);
+      $this->assertFalse(empty($parent_node->book['has_children']), 'Parent node is marked as having children');
+    }
+    else {
+      $this->drupalPostForm('node/add/book', $edit, t('Save'));
+    }
+
+    // Check to make sure the book node was created.
+    $node = $this->drupalGetNodeByTitle($edit['title[0][value]']);
+    $this->assertNotNull(($node === FALSE ? NULL : $node), 'Book node found in database.');
+    $number++;
+
+    return $node;
+  }
+
+  /**
+   * Test that the breadcrumb is updated when book content changes.
+   */
+  public function testBreadcrumbTitleUpdates() {
+    // Create a new book.
+    $nodes = $this->createBreadcrumbBook();
+    $book = $this->book;
+
+    $this->drupalLogin($this->bookAuthor);
+
+    $this->drupalGet($nodes[4]->toUrl());
+    // Fetch each node title in the current breadcrumb.
+    $links = $this->xpath('//nav[@class="breadcrumb"]/ol/li/a');
+    $got_breadcrumb = array();
+    foreach ($links as $link) {
+      $got_breadcrumb[] = (string) $link;
+    }
+    // Home link and four parent book nodes should be in the breadcrumb.
+    $this->assertEqual(5, count($got_breadcrumb));
+    $this->assertEqual($nodes[3]->getTitle(), end($got_breadcrumb));
+    $edit = [
+      'title[0][value]' => 'Updated node5 title',
+    ];
+    $this->drupalPostForm($nodes[3]->toUrl('edit-form'), $edit, 'Save');
+    $this->drupalGet($nodes[4]->toUrl());
+    // Fetch each node title in the current breadcrumb.
+    $links = $this->xpath('//nav[@class="breadcrumb"]/ol/li/a');
+    $got_breadcrumb = array();
+    foreach ($links as $link) {
+      $got_breadcrumb[] = (string) $link;
+    }
+    $this->assertEqual(5, count($got_breadcrumb));
+    $this->assertEqual($edit['title[0][value]'], end($got_breadcrumb));
+  }
+
+  /**
+   * Test that the breadcrumb is updated when book access changes.
+   */
+  public function testBreadcrumbAccessUpdates() {
+    // Create a new book.
+    $nodes = $this->createBreadcrumbBook();
+    $this->drupalLogin($this->bookAuthor);
+    $edit = [
+      'title[0][value]' => "you can't see me",
+    ];
+    $this->drupalPostForm($nodes[3]->toUrl('edit-form'), $edit, 'Save');
+    $this->drupalGet($nodes[4]->toUrl());
+    $links = $this->xpath('//nav[@class="breadcrumb"]/ol/li/a');
+    $got_breadcrumb = array();
+    foreach ($links as $link) {
+      $got_breadcrumb[] = (string) $link;
+    }
+    $this->assertEqual(5, count($got_breadcrumb));
+    $this->assertEqual($edit['title[0][value]'], end($got_breadcrumb));
+    $config = $this->container->get('config.factory')->getEditable('book_breadcrumb_test.settings');
+    $config->set('hide', TRUE)->save();
+    $this->drupalGet($nodes[4]->toUrl());
+    $links = $this->xpath('//nav[@class="breadcrumb"]/ol/li/a');
+    $got_breadcrumb = array();
+    foreach ($links as $link) {
+      $got_breadcrumb[] = (string) $link;
+    }
+    $this->assertEqual(4, count($got_breadcrumb));
+    $this->assertEqual($nodes[2]->getTitle(), end($got_breadcrumb));
+    $this->drupalGet($nodes[3]->toUrl());
+    $this->assertResponse(403);
+  }
+
+}
diff --git a/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml b/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml
new file mode 100644
index 0000000..192fb71
--- /dev/null
+++ b/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.info.yml
@@ -0,0 +1,6 @@
+name: 'Book module breadcrumb tests'
+type: module
+description: 'Support module for book module breadcrumb testing.'
+package: Testing
+version: VERSION
+core: 8.x
diff --git a/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.module b/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.module
new file mode 100644
index 0000000..526da71
--- /dev/null
+++ b/core/modules/book/tests/modules/book_breadcrumb_test/book_breadcrumb_test.module
@@ -0,0 +1,27 @@
+<?php
+
+/**
+ * @file
+ * Test module for testing the book module breadcrumb.
+ */
+
+use Drupal\Core\Access\AccessResultForbidden;
+use Drupal\Core\Access\AccessResultNeutral;
+use Drupal\Core\Session\AccountInterface;
+use Drupal\node\NodeInterface;
+
+/**
+ * Implements hook_node_access().
+ */
+function book_breadcrumb_test_node_access(NodeInterface $node, $operation, AccountInterface $account) {
+  $config = \Drupal::config('book_breadcrumb_test.settings');
+  if ($config->get('hide') && $node->getTitle() == "you can't see me" && $operation == 'view') {
+    $access = new AccessResultForbidden();
+  }
+  else {
+    $access = new AccessResultNeutral();
+  }
+  $access->addCacheableDependency($config);
+  $access->addCacheableDependency($node);
+  return $access;
+}
diff --git a/core/modules/book/tests/modules/book_breadcrumb_test/config/schema/book_breadcrumb_test.schema.yml b/core/modules/book/tests/modules/book_breadcrumb_test/config/schema/book_breadcrumb_test.schema.yml
new file mode 100644
index 0000000..3baf544
--- /dev/null
+++ b/core/modules/book/tests/modules/book_breadcrumb_test/config/schema/book_breadcrumb_test.schema.yml
@@ -0,0 +1,9 @@
+# Schema for the configuration files of the book_breadcrumb_test module.
+
+book_breadcrumb_test.settings:
+  type: config_object
+  label: 'Book Breadcrumb Test module settings'
+  mapping:
+    hide:
+      type: boolean
+      label: 'Setting for hiding content'
diff --git a/core/modules/book/tests/modules/book_test.info.yml b/core/modules/book/tests/modules/book_test/book_test.info.yml
similarity index 100%
rename from core/modules/book/tests/modules/book_test.info.yml
rename to core/modules/book/tests/modules/book_test/book_test.info.yml
diff --git a/core/modules/book/tests/modules/book_test.module b/core/modules/book/tests/modules/book_test/book_test.module
similarity index 100%
rename from core/modules/book/tests/modules/book_test.module
rename to core/modules/book/tests/modules/book_test/book_test.module
