is delivery guaranteed?,
The order of the delivery is guaranteed. This is due to the acknowledgement/sequence numbering scheme built in to the lower-layers of bluetooth protocol. so at a lower layer a packet is re-transmitted until it is acknowledged. note that this is equivalent to stop and wait ARQ scheme. if it takes more than a timeout then the connection is considered as lost (generally 30 seconds)
is data integrity guaranteed?
Bluetooth 4.2 introduced BT secure connection.This includes a Message Integiry Check(MIC) with each transmitted packet and a MIC mismatch at the receiving end will trigger a re-transmission and a number of MIC mismatches might disconnect the connection.
so if you are not using Secure Connection feature, then integrity is not guaranteed. There is a 16 bit CRC scheme used to protect data, but it is known that over long time period there is going to be CRC escapes (bit flips in such a way that CRC remains correct). but this is relatively rare and happens in a noisy environment. if your application requires very high data integrity then either use SecureConnection or introduce Application level Integrity checks.
Note that SPP Profile in itself does not have any error/sequence checking, RFCOMM has a 8 bit FCS (Frame check sequence) which checks for the header corruption. L2CAP streaming/Retransmission mode has an optional 16-bit FCS which covers L2CAP header and data, Note that the basic L2CAP mode does not have FCS at all.
if you have an option to enable L2CAP FCS then you have a 16bit CRC at lower-level + 16 bit FCS at the L2CAP layer + 8 bit FCS at RFCOMM level will provide a data integrity which is good enough for most applications. However as mentioned earlier if it is really critical then you need to introduce additional application level integrity checks.